Move c/h files implementing/defining standard library stuff into a new libc directory...
[kugel-rb.git] / firmware / libc / include / time.h
blob912fafe7ca17d92192e83e791a73b19bbb8c156f
1 /*
2 * time.h
3 *
4 * Struct declaration for dealing with time.
5 */
7 #ifndef _TIME_H_
8 #define _TIME_H_
10 #ifdef WPSEDITOR
11 #include "inttypes.h"
12 #include <time.h>
13 #endif
15 struct tm
17 int tm_sec;
18 int tm_min;
19 int tm_hour;
20 int tm_mday;
21 int tm_mon;
22 int tm_year;
23 int tm_wday;
24 int tm_yday;
25 int tm_isdst;
28 #if !defined(_TIME_T_DEFINED) && !defined(_TIME_T_DECLARED)
29 typedef long time_t;
31 /* this define below is used by the mingw headers to prevent duplicate
32 typedefs */
33 #define _TIME_T_DEFINED
34 #define _TIME_T_DECLARED
35 time_t time(time_t *t);
36 struct tm *localtime(const time_t *timep);
37 time_t mktime(struct tm *t);
39 #endif /* SIMULATOR */
41 #ifdef __PCTOOL__
42 /* this time.h does not define struct timespec,
43 so tell sys/stat.h not to use it */
44 #undef __USE_MISC
45 #endif
47 #endif /* _TIME_H_ */