Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <libc/stubs.h>
  3. #include <sys/stat.h>           /* For stat() */
  4. #include <fcntl.h>              /* For O_RDONLY, etc. */
  5. #include <unistd.h>             /* For read(), write(), etc. */
  6. #include <limits.h>             /* For PATH_MAX */
  7. #include <utime.h>              /* For utime() */
  8. #include <errno.h>              /* For errno */
  9.  
  10. int link(const char *path1, const char *path2)
  11. {
  12.  return -1;
  13. }
  14.