diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-04-02 00:42:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-04-02 00:42:24 +0000 |
commit | 15a33409206c926f48da017bae9ac5f01959a3bc (patch) | |
tree | c7ea62352cccb8569561560a0e927ab0c89b9eb3 /time/mktime.c | |
parent | 758b215383cde2389bc73d4483e6d3202bdc6520 (diff) | |
download | glibc-15a33409206c926f48da017bae9ac5f01959a3bc.tar glibc-15a33409206c926f48da017bae9ac5f01959a3bc.tar.gz glibc-15a33409206c926f48da017bae9ac5f01959a3bc.tar.bz2 glibc-15a33409206c926f48da017bae9ac5f01959a3bc.zip |
Update.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Use
__sigprocmask not sigprocmask.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
* time/mktime.c: Likewise.
* misc/getpass.c: Likewise.
Diffstat (limited to 'time/mktime.c')
-rw-r--r-- | time/mktime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/time/mktime.c b/time/mktime.c index c91a84fce8..ea9778c872 100644 --- a/time/mktime.c +++ b/time/mktime.c @@ -1,5 +1,5 @@ /* Convert a `struct tm' to a time_t value. - Copyright (C) 1993-1999, 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 1993-1999, 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Eggert (eggert@twinsun.com). @@ -37,11 +37,11 @@ #include <time.h> #include <limits.h> +#include <string.h> /* For string function builtin redirect. */ #if DEBUG # include <stdio.h> # include <stdlib.h> -# include <string.h> /* Make it work even if the system's libc has its own mktime routine. */ # define mktime my_mktime #endif /* DEBUG */ |