summaryrefslogtreecommitdiff
path: root/tests/test_realpath.c
blob: 2a17708f806556c7c3bb8d24d39302a895214d90 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "common.h"

#include <stdlib.h>
#include <stdio.h>

int main(int argc, char** argv) {
  char buf[PATH_MAX];
  char* rpath = realpath("/root/../", buf);
  printf("%s\n", rpath);
  return 0;
}