FS#8961 - Anti-Aliased Fonts.
[kugel-rb.git] / firmware / include / time.h
blob9010d99cc2e02be58fb600e4383c6794b7f2ea9c
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 <sys/types.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);
38 #endif /* SIMULATOR */
40 #ifdef __PCTOOL__
41 /* this time.h does not define struct timespec,
42 so tell sys/stat.h not to use it */
43 #undef __USE_MISC
44 #endif
47 #endif /* _TIME_H_ */