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:
parent
f84671c1ca
commit
d21f25079b
@ -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
|
||||
;
|
||||
|
21
src/kernel/libroot/posix/time/tzset.c
Normal file
21
src/kernel/libroot/posix/time/tzset.c
Normal 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";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user