symlink.c 616 B

123456789101112131415161718192021222324252627
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * symlink() for uClibc
  4. *
  5. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  6. *
  7. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  8. */
  9. #include <sys/syscall.h>
  10. #if defined __USE_BSD || defined __USE_UNIX98 || defined __USE_XOPEN2K
  11. # include <unistd.h>
  12. # if defined __NR_symlinkat && !defined __NR_symlink
  13. # include <fcntl.h>
  14. int symlink(const char *oldpath, const char *newpath)
  15. {
  16. return symlinkat(oldpath, AT_FDCWD, newpath);
  17. }
  18. # elif defined(__NR_symlink)
  19. _syscall2(int, symlink, const char *, oldpath, const char *, newpath)
  20. # endif
  21. #endif