symlink.c 250 B

123456789101112
  1. #include <unistd.h>
  2. #include <fcntl.h>
  3. #include "syscall.h"
  4. int symlink(const char *existing, const char *new)
  5. {
  6. #ifdef SYS_symlink
  7. return syscall(SYS_symlink, existing, new);
  8. #else
  9. return syscall(SYS_symlinkat, existing, AT_FDCWD, new);
  10. #endif
  11. }