diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-27 22:38:19 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-27 22:38:19 +0000 |
commit | c4d6f155e0ad6c3794fd3e7d2fa28e18ee9410b9 (patch) | |
tree | dbd9c143da2c049692889737783bb3db69a6d502 /time/Makefile | |
parent | 1d4959d856d014ed8ed0462297e62c355cc7167f (diff) | |
download | glibc-c4d6f155e0ad6c3794fd3e7d2fa28e18ee9410b9.tar.gz glibc-c4d6f155e0ad6c3794fd3e7d2fa28e18ee9410b9.tar.xz glibc-c4d6f155e0ad6c3794fd3e7d2fa28e18ee9410b9.zip |
* time/time.h (__strptime_l, strptime_l): Declare them.
* time/time.h (__strftime_l, strftime_l): Declare them. * wcsmbs/wchar.h (__wcsftime_l, wcsftime_l): Declare them. * time/strftime_l.c: New file. * time/wcsftime_l.c: New file. * time/Makefile (routines): Add strftime_l, wcsftime_l. * time/Versions (libc: GLIBC_2.3): Add __strftime_l, __wcsftime_l, strftime_l, wcsftime_l.
Diffstat (limited to 'time/Makefile')
-rw-r--r-- | time/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/time/Makefile b/time/Makefile index f60dee0e28..5e55e3539f 100644 --- a/time/Makefile +++ b/time/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-1999, 2000, 2001 Free Software Foundation, Inc. +# Copyright (C) 1991-1999,2000,01,02 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -24,12 +24,12 @@ subdir := time headers := time.h sys/time.h sys/timeb.h bits/time.h routines := offtime asctime clock ctime ctime_r difftime \ - gmtime localtime mktime strftime time \ + gmtime localtime mktime time \ gettimeofday settimeofday adjtime tzset \ tzfile getitimer setitimer \ stime dysize timegm ftime \ - strptime getdate wcsftime - + strptime getdate \ + strftime wcsftime strftime_l wcsftime_l distribute := datemsk tests := test_time clocktest tst-posixtz tst-strptime tst_wcsftime \ |