Pristine Ack-5.5
[Ack-5.5.git] / lib / minix / include / utime.h
1 /* The <utime.h> header is used for the utime() system call. */
2
3 #ifndef _UTIME_H
4 #define _UTIME_H
5
6 struct utimbuf {
7   time_t actime;                /* access time */
8   time_t modtime;               /* modification time */
9 };
10
11
12 /* Function Prototypes. */
13 #ifndef _ANSI_H
14 #include <ansi.h>
15 #endif
16
17 _PROTOTYPE( int utime, (char *_path, struct utimbuf *_times)            );
18
19 #endif /* _UTIME_H */