|
|
1.1 root 1: /* (-lgl
2: * COHERENT Version 4.0.2
3: * Copyright (c) 1982, 1993 by Mark Williams Company.
4: * All rights reserved. May not be copied without permission.
5: -lgl) */
6: /*
7: * time.h
8: * COHERENT time function header.
9: */
10:
11: #ifndef __TIME_H__
12: #define __TIME_H__
13:
14: #include <sys/types.h>
15: #include <sys/_time.h>
16:
17: struct tm {
18: int tm_sec;
19: int tm_min;
20: int tm_hour;
21: int tm_mday;
22: int tm_mon;
23: int tm_year;
24: int tm_wday;
25: int tm_yday;
26: int tm_isdst;
27: };
28:
29: extern char *asctime();
30: extern char *ctime();
31: extern struct tm *gmtime();
32: extern struct tm *localtime();
33: extern time_t time();
34: extern long timezone;
35: extern char *tzname[2];
36:
37: #endif
38:
39: /* end of time.h */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.