mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:47:34 +00:00
LibC: Implement enough missing stuff to get bash-5.0 running. :^)
This commit is contained in:
parent
5158bee08c
commit
736e852525
26 changed files with 125 additions and 37 deletions
|
@ -83,7 +83,10 @@ struct tm* localtime(const time_t* t)
|
|||
return &tm_buf;
|
||||
}
|
||||
|
||||
long timezone = 0;
|
||||
long timezone;
|
||||
long altzone;
|
||||
char* tzname[2];
|
||||
int daylight;
|
||||
|
||||
void tzset()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue