home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / libfake / symlink.c < prev   
C/C++ Source or Header  |  1994-09-08  |  219b  |  23 lines

  1. /*
  2.  * symlink dummy
  3.  */
  4.  
  5. #include <errno.h>
  6. #include "fixerrno.h"
  7.  
  8. int
  9. symlink(n1, n2)
  10. char *n1, *n2;
  11. {
  12.     errno = 0;        /* kludge */
  13.     return -1;
  14. }
  15.  
  16. int
  17. readlink(path, buf, size)
  18. char *path, *buf;
  19. int size;
  20. {
  21.     return -1;
  22. }
  23.