source:
trunk/minix/include/utime.h@
12
Last change on this file since 12 was 9, checked in by , 14 years ago | |
---|---|
File size: 378 bytes |
Rev | Line | |
---|---|---|
[9] | 1 | /* The <utime.h> header is used for the utime() system call. */ |
2 | ||
3 | #ifndef _UTIME_H | |
4 | #define _UTIME_H | |
5 | ||
6 | #ifndef _TYPES_H | |
7 | #include <sys/types.h> | |
8 | #endif | |
9 | ||
10 | struct utimbuf { | |
11 | time_t actime; /* access time */ | |
12 | time_t modtime; /* modification time */ | |
13 | }; | |
14 | ||
15 | /* Function Prototypes. */ | |
16 | _PROTOTYPE( int utime, (const char *_path, const struct utimbuf *_times) ); | |
17 | ||
18 | #endif /* _UTIME_H */ |
Note:
See TracBrowser
for help on using the repository browser.