fp might be NULL.
[minix.git] / include / utime.h
blobb512aa4822c03caccb6bea6b45120802c7ef5be6
1 /* The <utime.h> header is used for the utime() system call. */
3 #ifndef _UTIME_H
4 #define _UTIME_H
6 #ifndef _TYPES_H
7 #include <sys/types.h>
8 #endif
10 struct utimbuf {
11 time_t actime; /* access time */
12 time_t modtime; /* modification time */
15 /* Function Prototypes. */
16 _PROTOTYPE( int utime, (const char *_path, const struct utimbuf *_times) );
18 #endif /* _UTIME_H */