Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4973 right-hear 1
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2
#include 
3
#include 		/* For utime() */
4
#include 		/* For localtime() */
5
#include 		/* For open() */
6
#include 
7
#include 		/* 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
}