source: vendor/emx/current/include/sys/utime.h

Last change on this file was 18, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 485 bytes
Line 
1/* sys/utime.h (emx+gcc) */
2
3#ifndef _SYS_UTIME_H
4#define _SYS_UTIME_H
5
6#if defined (__cplusplus)
7extern "C" {
8#endif
9
10#if !defined (_TIME_T)
11#define _TIME_T
12typedef unsigned long time_t;
13#endif
14
15#if !defined (_UTIMBUF)
16#define _UTIMBUF
17struct utimbuf
18{
19 time_t actime;
20 time_t modtime;
21};
22#endif
23
24int utime (__const__ char *, __const__ struct utimbuf *);
25
26int _utime (__const__ char *, __const__ struct utimbuf *);
27
28#if defined (__cplusplus)
29}
30#endif
31
32#endif /* not _SYS_UTIME_H */
Note: See TracBrowser for help on using the repository browser.