Usermode/libc - Changes to get NASM/irssi/bash ... compiling
[tpg/acess2.git] / Usermode / include / time.h
1 /*
2  * Acess2 C Library
3  * - By John Hodge (thePowersGang)
4  *
5  * time.h
6  * - POSIX time functions
7  */
8 #ifndef _TIME_H_
9 #define _TIME_H_
10
11 struct tm
12 {
13          int    tm_sec;
14          int    tm_min;
15          int    tm_hour;
16          int    tm_mday;
17          int    tm_mon;
18          int    tm_year;        // 1900 based
19          int    tm_wday;
20          int    tm_yday;
21          int    tm_isdst;
22 };
23
24 #endif
25

UCC git Repository :: git.ucc.asn.au