Initial revision

This commit is contained in:
Ben Gras
2005-04-21 14:53:53 +00:00
commit 9865aeaa79
2264 changed files with 411685 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
/* The <utime.h> header is used for the utime() system call. */
#ifndef _UTIME_H
#define _UTIME_H
#ifndef _TYPES_H
#include <sys/types.h>
#endif
struct utimbuf {
time_t actime; /* access time */
time_t modtime; /* modification time */
};
/* Function Prototypes. */
_PROTOTYPE( int utime, (const char *_path, const struct utimbuf *_times) );
#endif /* _UTIME_H */