source: trunk/minix/include/utime.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 378 bytes
Line 
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
10struct 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.