diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-10-06 10:21:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-10-06 10:21:30 +0000 |
commit | acdf125133f9ec20dc533a1af879c52a8e754f90 (patch) | |
tree | 1d61cb807566584de805504e9fc4f3b035bd068a /sysdeps/wordsize-32 | |
parent | 3cb0721780482693695c9cba48b0401995c4793d (diff) | |
download | glibc-acdf125133f9ec20dc533a1af879c52a8e754f90.tar glibc-acdf125133f9ec20dc533a1af879c52a8e754f90.tar.gz glibc-acdf125133f9ec20dc533a1af879c52a8e754f90.tar.bz2 glibc-acdf125133f9ec20dc533a1af879c52a8e754f90.zip |
Update.
1998-10-05 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Use __P
in definitions of inline stat functions so that they match the
declaration.
* 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.
* argp/argp.h: Likewise.
Diffstat (limited to 'sysdeps/wordsize-32')
-rw-r--r-- | sysdeps/wordsize-32/inttypes.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sysdeps/wordsize-32/inttypes.h b/sysdeps/wordsize-32/inttypes.h index 6144411e24..48c97b3396 100644 --- a/sysdeps/wordsize-32/inttypes.h +++ b/sysdeps/wordsize-32/inttypes.h @@ -278,7 +278,8 @@ extern long long int __strtoll_internal __P ((__const char *__restrict __nptr, # define __strtoll_internal_defined 1 # endif extern __inline intmax_t -strtoimax (__const char *__restrict nptr, char **__restrict endptr, int base) +strtoimax __P ((__const char *__restrict nptr, char **__restrict endptr, + int base)) { return __strtoll_internal (nptr, endptr, base, 0); } @@ -295,7 +296,8 @@ extern unsigned long long int __strtoull_internal __P ((__const char * # define __strtoull_internal_defined 1 # endif extern __inline uintmax_t -strtoumax (__const char *__restrict nptr, char **__restrict endptr, int base) +strtoumax __P ((__const char *__restrict nptr, char **__restrict endptr, + int base)) { return __strtoull_internal (nptr, endptr, base, 0); } @@ -310,8 +312,8 @@ extern long long int __wcstoll_internal __P ((__const wchar_t * # define __wcstoll_internal_defined 1 # endif extern __inline intmax_t -wcstoimax (__const wchar_t *__restrict nptr, wchar_t **__restrict endptr, - int base) +wcstoimax __P ((__const wchar_t *__restrict nptr, wchar_t **__restrict endptr, + int base)) { return __wcstoll_internal (nptr, endptr, base, 0); } @@ -329,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 (__const wchar_t *__restrict nptr, wchar_t **__restrict endptr, - int base) +wcstoumax __P ((__const wchar_t *__restrict nptr, wchar_t **__restrict endptr, + int base)) { return __wcstoull_internal (nptr, endptr, base, 0); } |