mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibC: Enough compat work to make binutils-2.32 build and run.
This commit is contained in:
@@ -83,6 +83,16 @@ struct tm* localtime(const time_t* t)
|
||||
return &tm_buf;
|
||||
}
|
||||
|
||||
struct tm* gmtime(const time_t* t)
|
||||
{
|
||||
return localtime(t);
|
||||
}
|
||||
|
||||
size_t strftime(char *s, size_t max, const char *format, const struct tm *tm)
|
||||
{
|
||||
assert(false);
|
||||
}
|
||||
|
||||
long timezone;
|
||||
long altzone;
|
||||
char* tzname[2];
|
||||
|
||||
Reference in New Issue
Block a user