replace library time handling functions

mktime, tzset, asctime, ctime, gmtime, localtime, strftime
with zoneinfo implementations in src/commands/zoneinfo, referenced
from src/lib/stdtime/Makefile.in.
This commit is contained in:
Ben Gras
2007-03-30 15:36:49 +00:00
parent 6ccd37a982
commit 056ac0a0d3
13 changed files with 28 additions and 627 deletions

14
lib/stdtime/Makefile.in Normal file
View File

@@ -0,0 +1,14 @@
# Makefile for lib/stdtime.
Z=../../commands/zoneinfo
CFLAGS="-O -D_MINIX -D_POSIX_SOURCE -D__USG -I$Z"
LIBRARIES=libc
libc_FILES="
$Z/asctime.c
$Z/localtime.c
$Z/strftime.c
"
TYPE=both