X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fsystime.h;h=b4497c4a08858c59d1f118580a2358bc72d547d8;hb=02f4d2761a98c5cb9d5b423d2361160a5d8c9ee4;hp=2a56a89340a11d1a194ea6207d00078bcbc46c9d;hpb=041e98cf4c48018877365e3bfb37cfc09b54cc6d;p=chise%2Fxemacs-chise.git- diff --git a/src/systime.h b/src/systime.h index 2a56a89..b4497c4 100644 --- a/src/systime.h +++ b/src/systime.h @@ -63,10 +63,16 @@ void gettimeofday (struct timeval *, struct timezone *); #endif /* WIN32_NATIVE */ +/* struct utimbuf */ + #ifdef HAVE_UTIME # include #endif +#ifdef WIN32_NATIVE +# include +#endif + #if defined(HAVE_TZNAME) && !defined(WIN32_NATIVE) && !defined(CYGWIN) #ifndef tzname /* For SGI. */ extern char *tzname[]; /* RS6000 and others want it this way. */ @@ -228,7 +234,9 @@ do { \ #define EMACS_SET_SECS_USECS(time, secs, usecs) \ (EMACS_SET_SECS (time, secs), EMACS_SET_USECS (time, usecs)) -int set_file_times (char *filename, EMACS_TIME atime, EMACS_TIME mtime); +#ifdef emacs +int set_file_times (Lisp_Object path, EMACS_TIME atime, EMACS_TIME mtime); +#endif void get_process_times (double *user_time, double *system_time, double *real_time);