mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Add data types to <time.h> and tm_yday to struct tm.
This commit is contained in:
parent
9411784b58
commit
a6a8a75a0c
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue