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 /stdlib/stdlib.h | |
parent | 1622fda9c034eb332f27453d6458ea6d30b119c0 (diff) | |
download | glibc-99e46354d96d9dc70c7b5ae7ed1a3d7ff0dbb77f.tar.gz |
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 'stdlib/stdlib.h')
-rw-r--r-- | stdlib/stdlib.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index 7eb34fdf15..0b4120967e 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -236,31 +236,31 @@ extern unsigned long long int __strtoull_internal __P ((__const char * /* Define inline functions which call the internal entry points. */ extern __inline double -strtod __P ((__const char *__restrict __nptr, char **__restrict __endptr)) +strtod (__const char *__restrict __nptr, char **__restrict __endptr) __THROW { return __strtod_internal (__nptr, __endptr, 0); } extern __inline long int -strtol __P ((__const char *__restrict __nptr, char **__restrict __endptr, - int __base)) +strtol (__const char *__restrict __nptr, char **__restrict __endptr, + int __base) __THROW { return __strtol_internal (__nptr, __endptr, __base, 0); } extern __inline unsigned long int -strtoul __P ((__const char *__restrict __nptr, char **__restrict __endptr, - int __base)) +strtoul (__const char *__restrict __nptr, char **__restrict __endptr, + int __base) __THROW { return __strtoul_internal (__nptr, __endptr, __base, 0); } # ifdef __USE_ISOC9X extern __inline float -strtof __P ((__const char *__restrict __nptr, char **__restrict __endptr)) +strtof (__const char *__restrict __nptr, char **__restrict __endptr) __THROW { return __strtof_internal (__nptr, __endptr, 0); } extern __inline __long_double_t -strtold __P ((__const char *__restrict __nptr, char **__restrict __endptr)) +strtold (__const char *__restrict __nptr, char **__restrict __endptr) __THROW { return __strtold_internal (__nptr, __endptr, 0); } @@ -268,14 +268,14 @@ strtold __P ((__const char *__restrict __nptr, char **__restrict __endptr)) # ifdef __USE_BSD __extension__ extern __inline long long int -strtoq __P ((__const char *__restrict __nptr, char **__restrict __endptr, - int __base)) +strtoq (__const char *__restrict __nptr, char **__restrict __endptr, + int __base) __THROW { return __strtoll_internal (__nptr, __endptr, __base, 0); } __extension__ extern __inline unsigned long long int -strtouq __P ((__const char *__restrict __nptr, char **__restrict __endptr, - int __base)) +strtouq (__const char *__restrict __nptr, char **__restrict __endptr, + int __base) __THROW { return __strtoull_internal (__nptr, __endptr, __base, 0); } @@ -283,38 +283,38 @@ strtouq __P ((__const char *__restrict __nptr, char **__restrict __endptr, # if defined __USE_MISC || defined __USE_ISOC9X __extension__ extern __inline long long int -strtoll __P ((__const char *__restrict __nptr, char **__restrict __endptr, - int __base)) +strtoll (__const char *__restrict __nptr, char **__restrict __endptr, + int __base) __THROW { return __strtoll_internal (__nptr, __endptr, __base, 0); } __extension__ extern __inline unsigned long long int -strtoull __P ((__const char * __restrict __nptr, char **__restrict __endptr, - int __base)) +strtoull (__const char * __restrict __nptr, char **__restrict __endptr, + int __base) __THROW { return __strtoull_internal (__nptr, __endptr, __base, 0); } # endif extern __inline double -atof __P ((__const char *__nptr)) +atof (__const char *__nptr) __THROW { return strtod (__nptr, (char **) NULL); } extern __inline int -atoi __P ((__const char *__nptr)) +atoi (__const char *__nptr) __THROW { return (int) strtol (__nptr, (char **) NULL, 10); } extern __inline long int -atol __P ((__const char *__nptr)) +atol (__const char *__nptr) __THROW { return strtol (__nptr, (char **) NULL, 10); } # if defined __USE_MISC || defined __USE_ISOC9X __extension__ extern __inline long long int -atoll __P ((__const char *__nptr)) +atoll (__const char *__nptr) __THROW { return strtoll (__nptr, (char **) NULL, 10); } |