#define _DEFAULT_SOURCE #define _XOPEN_SOURCE 700 #include #include #include #include int main(int argc, char **argv) { if (symlink("silly-me", "tmp/other-link")) return 1; struct stat st; lstat("tmp/other-link", &st); return 0; }