diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-10-13 15:12:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-10-13 15:12:27 +0000 |
commit | 99e46354d96d9dc70c7b5ae7ed1a3d7ff0dbb77f (patch) | |
tree | cc97f13ce989554a0bd4f67c1fbcb3982e99fac6 /sysdeps/wordsize-32 | |
parent | 1622fda9c034eb332f27453d6458ea6d30b119c0 (diff) | |
download | glibc-99e46354d96d9dc70c7b5ae7ed1a3d7ff0dbb77f.tar.gz glibc-99e46354d96d9dc70c7b5ae7ed1a3d7ff0dbb77f.tar.xz glibc-99e46354d96d9dc70c7b5ae7ed1a3d7ff0dbb77f.zip |
Update.
1998-10-13 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Include string.h to get memcpy prototype and NULL definition. 1998-10-12 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * misc/sys/cdefs.h (__THROW): New macro. * argp/argp.h: Use it to replace the kludgey __P in inline function definitions. * sysdeps/unix/sysv/linux/bits/socket.h: Likewise. * stdlib/stdlib.h: Likewise. * wcsmbs/wchar.h: Likewise. * libio/stdio.h: Likewise. * stdio/stdio.h: Likewise. * sysdeps/wordsize-64/inttypes.h: Likewise. * sysdeps/wordsize-32/inttypes.h: Likewise. * string/argz.h: Likewise. * io/sys/stat.h: Likewise. 1998-10-12 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * Rules (stdio_lim): New variable. ($(stdio_lim:h=st)): Use this as intermediate stamp file, depend on Rules and config.make, use $(move-if-change) to avoid unnessary recompilations, and cleanup command. (common-generated): Add bits/stdio_lim.st.
Diffstat (limited to 'sysdeps/wordsize-32')
-rw-r--r-- | sysdeps/wordsize-32/inttypes.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sysdeps/wordsize-32/inttypes.h b/sysdeps/wordsize-32/inttypes.h index 48c97b3396..5897fdab19 100644 --- a/sysdeps/wordsize-32/inttypes.h +++ b/sysdeps/wordsize-32/inttypes.h @@ -278,8 +278,8 @@ extern long long int __strtoll_internal __P ((__const char *__restrict __nptr, # define __strtoll_internal_defined 1 # endif extern __inline intmax_t -strtoimax __P ((__const char *__restrict nptr, char **__restrict endptr, - int base)) +strtoimax (__const char *__restrict nptr, char **__restrict endptr, + int base) __THROW { return __strtoll_internal (nptr, endptr, base, 0); } @@ -296,8 +296,8 @@ extern unsigned long long int __strtoull_internal __P ((__const char * # define __strtoull_internal_defined 1 # endif extern __inline uintmax_t -strtoumax __P ((__const char *__restrict nptr, char **__restrict endptr, - int base)) +strtoumax (__const char *__restrict nptr, char **__restrict endptr, + int base) __THROW { return __strtoull_internal (nptr, endptr, base, 0); } @@ -312,8 +312,8 @@ extern long long int __wcstoll_internal __P ((__const wchar_t * # define __wcstoll_internal_defined 1 # endif extern __inline intmax_t -wcstoimax __P ((__const wchar_t *__restrict nptr, wchar_t **__restrict endptr, - int base)) +wcstoimax (__const wchar_t *__restrict nptr, wchar_t **__restrict endptr, + int base) __THROW { return __wcstoll_internal (nptr, endptr, base, 0); } @@ -331,8 +331,8 @@ extern unsigned long long int __wcstoull_internal __P ((__const wchar_t * # define __wcstoull_internal_defined 1 # endif extern __inline uintmax_t -wcstoumax __P ((__const wchar_t *__restrict nptr, wchar_t **__restrict endptr, - int base)) +wcstoumax (__const wchar_t *__restrict nptr, wchar_t **__restrict endptr, + int base) __THROW { return __wcstoull_internal (nptr, endptr, base, 0); } |