root/include/utime.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _UTIME_H
   2 #define _UTIME_H
   3 
   4 #include <sys/types.h>  /* I know - shouldn't do this, but .. */
   5 
   6 struct utimbuf {
   7         time_t actime;
   8         time_t modtime;
   9 };
  10 
  11 extern int utime(const char *filename, struct utimbuf *times);
  12 
  13 #endif

/* [previous][next][first][last][top][bottom][index][help] */