Add data types to <time.h> and tm_yday to struct tm.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-01-10 19:45:57 +01:00
parent 9411784b58
commit a6a8a75a0c
1 changed files with 6 additions and 0 deletions

View File

@ -30,7 +30,12 @@
__BEGIN_DECLS
@include(clock_t.h)
@include(size_t.h)
@include(pid_t.h)
@include(time_t.h)
@include(NULL.h)
#define CLOCKS_PER_SEC 1000000
struct tm
{
@ -41,6 +46,7 @@ struct tm
int tm_mon;
int tm_year;
int tm_wday;
int tm_yday;
int tm_isdst;
};