diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-04-28 21:56:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-04-28 21:56:46 +0000 |
commit | 390500b147a8063ea4be7313ec38cada26f9235a (patch) | |
tree | edf14c04a0a46992ce4c04eeaf604fab99a9d960 /include | |
parent | fbb9cc9129ae3efdb1652b175f57956033102876 (diff) | |
download | glibc-390500b147a8063ea4be7313ec38cada26f9235a.zip glibc-390500b147a8063ea4be7313ec38cada26f9235a.tar.gz glibc-390500b147a8063ea4be7313ec38cada26f9235a.tar.bz2 |
Update.
1999-04-28 Ulrich Drepper <drepper@cygnus.com>
* manager.c (pthread_allocate_stack): Optimize initialization of new
thread descriptor.
Diffstat (limited to 'include')
-rw-r--r-- | include/string.h | 2 | ||||
-rw-r--r-- | include/time.h | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/string.h b/include/string.h index c225d65..4d610ba 100644 --- a/include/string.h +++ b/include/string.h @@ -18,4 +18,6 @@ extern char *__strndup __P ((__const char *__string, size_t __n)); extern __ptr_t __rawmemchr __P ((__const __ptr_t __s, int __c)); +extern char *__strchrnul __P ((__const char *__s, int __c)); + #endif diff --git a/include/time.h b/include/time.h index 444679d..fcfb3fe 100644 --- a/include/time.h +++ b/include/time.h @@ -22,7 +22,9 @@ extern size_t __tzname_cur_max; extern int __use_tzfile; -extern void __tzfile_read __P ((const char *file));extern int __tzfile_compute __P ((time_t timer, int use_localtime, +extern void __tzfile_read __P ((const char *file, size_t extra, + char **extrap)); +extern int __tzfile_compute __P ((time_t timer, int use_localtime, long int *leap_correct, int *leap_hit, struct tm *tp)); extern void __tzfile_default __P ((const char *std, const char *dst, |