Added missing function tzset() - doesn't do a lot yet, though. The source

file also contains the tzname symbol.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8763 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-09-01 10:28:25 +00:00
parent f84671c1ca
commit d21f25079b
2 changed files with 29 additions and 7 deletions

View File

@ -1,12 +1,13 @@
SubDir OBOS_TOP src kernel libroot posix time ;
KernelMergeObject posix_time.o :
<$(SOURCE_GRIST)>asctime.c
<$(SOURCE_GRIST)>ctime.c
<$(SOURCE_GRIST)>difftime.c
<$(SOURCE_GRIST)>localtime.c
<$(SOURCE_GRIST)>mktime.c
<$(SOURCE_GRIST)>strftime.cpp
<$(SOURCE_GRIST)>time.c
asctime.c
ctime.c
difftime.c
localtime.c
mktime.c
strftime.cpp
time.c
tzset.c
: -fPIC -DPIC
;

View File

@ -0,0 +1,21 @@
/*
** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the Haiku License.
*/
#include <time.h>
char *tzname[2];
void
tzset(void)
{
// ToDo: implement me properly!
tzname[0] = "std";
tzname[0] = "dst";
}