home *** CD-ROM | disk | FTP | other *** search
- /*
- * sys/utime.h utimbuf structure and prototypes
- *
- * Copyright (C) by WATCOM Systems Inc. 1988-1992. All rights reserved.
- */
- #ifndef _UTIME_H_INCLUDED
-
- #pragma pack(1)
-
- #ifndef _TIME_T_DEFINED_
- #define _TIME_T_DEFINED_
- typedef unsigned long time_t; /* time value */
- #endif
-
- struct utimbuf {
- time_t actime; /* access time */
- time_t modtime; /* modification time */
- };
-
- /*
- * POSIX 1003.1 Prototype
- */
- int utime( const char *__path, const struct utimbuf * __times );
-
- #pragma pack()
- #define _UTIME_H_INCLUDED
- #endif
-