mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 13:57:35 +00:00
LibC: A bunch of compat work towards porting GCC.
This commit is contained in:
parent
9fd4f4862b
commit
93c0dfd1d7
18 changed files with 166 additions and 13 deletions
|
@ -29,9 +29,11 @@ extern int daylight;
|
|||
|
||||
int gettimeofday(struct timeval*, struct timezone* tz);
|
||||
struct tm* localtime(const time_t*);
|
||||
struct tm *gmtime(const time_t*);
|
||||
time_t time(time_t*);
|
||||
char* ctime(const time_t*);
|
||||
void tzset();
|
||||
char *asctime(const struct tm*);
|
||||
|
||||
#define difftime(t1,t0) (double)(t1 - t0)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue