Prepare new maemo release
[maemo-rb.git] / firmware / libc / include / time.h
blob4796b8b083fcd070413c60fd73be44ec7971c818
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 struct tm *gmtime(const time_t *timep);
38 struct tm *gmtime_r(const time_t *timep, struct tm *result);
39 time_t mktime(struct tm *t);
41 #endif /* SIMULATOR */
43 #ifdef __PCTOOL__
44 /* this time.h does not define struct timespec,
45 so tell sys/stat.h not to use it */
46 #undef __USE_MISC
47 #endif
49 #endif /* _TIME_H_ */