Subversion Repositories Kolibri OS

Rev

Go to most recent revision | 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 <utime.h>              /* For utime() */
  4. #include <time.h>               /* For localtime() */
  5. #include <fcntl.h>              /* For open() */
  6. #include <unistd.h>
  7. #include <errno.h>              /* For errno */
  8.  
  9. /* An implementation of utime() for DJGPP.  The utime() function
  10.    specifies an access time and a modification time.  DOS has only one
  11.    time, so we will (arbitrarily) use the modification time. */
  12. int
  13. utime(const char *path, const struct utimbuf *times)
  14. {
  15.   return 0;
  16. }
  17.