summaryrefslogtreecommitdiff
path: root/tests/test_realpath_null.c
blob: b62cee82f7a140e1aed096a421fc71b93a1ef3bb (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* rpath = realpath("/root/../", NULL);
  printf("%s\n", rpath);
  free(rpath);
  return 0;
}