From d8cf93f489282ed4dd0b727e9efd9efef192e952 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 31 Dec 1999 18:51:25 +0000 Subject: Update. 1999-12-31 Andreas Jaeger * libio/strfile.h: Remove K&R compatibility. * locale/langinfo.h: Likewise. * locale/localeconv.c (localeconv): Likewise. * locale/programs/simple-hash.h: Likewise. * nis/nis_xdr.h: Likewise. * nis/rpcsvc/nislib.h: Likewise. * nis/rpcsvc/nis_callback.h: Likewise. * nis/rpcsvc/nis.h: Likewise. * nis/ypclnt.c: Likewise. * nscd/nscd_proto.h: Likewise. * nscd/nscd.c: Likewise. * sysdeps/generic/inttypes.h: Likewise. * sysdeps/gnu/utmpx.h: Likewise. * nis/nis_intern.h: Remove K&R compatibility; add missing ints. * sunrpc/rpcsvc/rusers.x: Likewise. * nis/rpcsvc/ypclnt.h: Remove K&R compatibility; reformat. * elf/dl-misc.c: Remove __libc_write prototype since it's already in include/unistd.h. * elf/dl-profile.c: Likewise. * elf/dl-load.c: Likewise for __libc_read. * elf/dl-profile.c: Remove __P. * elf/sprof.c: Likewise. * elf/sln.c: Likewise. --- sysdeps/generic/inttypes.h | 110 ++++++++++++++++++++++----------------------- 1 file changed, 55 insertions(+), 55 deletions(-) (limited to 'sysdeps/generic/inttypes.h') diff --git a/sysdeps/generic/inttypes.h b/sysdeps/generic/inttypes.h index 2d4c1686e3..1ac9114fc4 100644 --- a/sysdeps/generic/inttypes.h +++ b/sysdeps/generic/inttypes.h @@ -295,27 +295,27 @@ typedef lldiv_t imaxdiv_t; /* Compute absolute value of N. */ -extern intmax_t imaxabs __P ((intmax_t __n)) __attribute__ ((__const__)); +extern intmax_t imaxabs (intmax_t __n) __THROW __attribute__ ((__const__)); /* Return the `imaxdiv_t' representation of the value of NUMER over DENOM. */ -extern imaxdiv_t imaxdiv __P ((intmax_t __numer, intmax_t __denom)) - __attribute__ ((__const__)); +extern imaxdiv_t imaxdiv (intmax_t __numer, intmax_t __denom) + __THROW __attribute__ ((__const__)); /* Like `strtol' but convert to `intmax_t'. */ -extern intmax_t strtoimax __P ((__const char *__restrict __nptr, - char **__restrict __endptr, int __base)); +extern intmax_t strtoimax (__const char *__restrict __nptr, + char **__restrict __endptr, int __base) __THROW; /* Like `strtoul' but convert to `uintmax_t'. */ -extern uintmax_t strtoumax __P ((__const char * __restrict __nptr, - char ** __restrict __endptr, int __base)); +extern uintmax_t strtoumax (__const char * __restrict __nptr, + char ** __restrict __endptr, int __base) __THROW; /* Like `wcstol' but convert to `intmax_t'. */ -extern intmax_t wcstoimax __P ((__const wchar_t * __restrict __nptr, - wchar_t **__restrict __endptr, int __base)); +extern intmax_t wcstoimax (__const wchar_t * __restrict __nptr, + wchar_t **__restrict __endptr, int __base) __THROW; /* Like `wcstoul' but convert to `uintmax_t'. */ -extern uintmax_t wcstoumax __P ((__const wchar_t * __restrict __nptr, - wchar_t ** __restrict __endptr, int __base)); +extern uintmax_t wcstoumax (__const wchar_t * __restrict __nptr, + wchar_t ** __restrict __endptr, int __base) __THROW; #ifdef __USE_EXTERN_INLINES @@ -323,10 +323,10 @@ extern uintmax_t wcstoumax __P ((__const wchar_t * __restrict __nptr, /* We ant to use the appropriate functions from but cannot assume the header is read already. */ -__extension__ extern long int labs __P ((long int __x)) - __attribute__ ((__const__)); -__extension__ extern ldiv_t ldiv __P ((long int __numer, long int __denom)) - __attribute__ ((__const__)); +__extension__ extern long int labs (long int __x) + __THROW __attribute__ ((__const__)); +__extension__ extern ldiv_t ldiv (long int __numer, long int __denom) + __THROW __attribute__ ((__const__)); /* Compute absolute value of N. */ @@ -345,9 +345,9 @@ imaxdiv (intmax_t __numer, intmax_t __denom) __THROW /* Like `strtol' but convert to `intmax_t'. */ # ifndef __strtol_internal_defined -extern long int __strtol_internal __P ((__const char *__restrict __nptr, - char **__restrict __endptr, - int __base, int __group)); +extern long int __strtol_internal (__const char *__restrict __nptr, + char **__restrict __endptr, + int __base, int __group) __THROW; # define __strtol_internal_defined 1 # endif extern __inline intmax_t @@ -359,10 +359,10 @@ strtoimax (__const char *__restrict nptr, char **__restrict endptr, /* Like `strtoul' but convert to `uintmax_t'. */ # ifndef __strtoul_internal_defined -extern unsigned long int __strtoul_internal __P ((__const char * - __restrict __nptr, - char ** __restrict __endptr, - int __base, int __group)); +extern unsigned long int __strtoul_internal (__const char * + __restrict __nptr, + char ** __restrict __endptr, + int __base, int __group) __THROW; # define __strtoul_internal_defined 1 # endif extern __inline uintmax_t @@ -374,9 +374,9 @@ strtoumax (__const char *__restrict nptr, char **__restrict endptr, /* Like `wcstol' but convert to `intmax_t'. */ # ifndef __wcstol_internal_defined -extern long int __wcstol_internal __P ((__const wchar_t * __restrict __nptr, - wchar_t **__restrict __endptr, - int __base, int __group)); +extern long int __wcstol_internal (__const wchar_t * __restrict __nptr, + wchar_t **__restrict __endptr, + int __base, int __group) __THROW; # define __wcstol_internal_defined 1 # endif extern __inline intmax_t @@ -389,11 +389,11 @@ wcstoimax (__const wchar_t *__restrict nptr, wchar_t **__restrict endptr, /* Like `wcstoul' but convert to `uintmax_t'. */ # ifndef __wcstoul_internal_defined -extern unsigned long int __wcstoul_internal __P ((__const wchar_t * - __restrict __nptr, - wchar_t ** - __restrict __endptr, - int __base, int __group)); +extern unsigned long int __wcstoul_internal (__const wchar_t * + __restrict __nptr, + wchar_t ** + __restrict __endptr, + int __base, int __group) __THROW; # define __wcstoul_internal_defined 1 # endif extern __inline uintmax_t @@ -405,13 +405,13 @@ wcstoumax (__const wchar_t *__restrict nptr, wchar_t **__restrict endptr, # else /* __WORDSIZE == 32 */ -/* We ant to use the appropriate functions from but cannot +/* We want to use the appropriate functions from but cannot assume the header is read already. */ -__extension__ extern long long int llabs __P ((long long int __x)) - __attribute__ ((__const__)); -__extension__ extern lldiv_t lldiv __P ((long long int __numer, - long long int __denom)) - __attribute__ ((__const__)); +__extension__ extern long long int llabs (long long int __x) + __THROW __attribute__ ((__const__)); +__extension__ extern lldiv_t lldiv (long long int __numer, + long long int __denom) + __THROW __attribute__ ((__const__)); /* Compute absolute value of N. */ @@ -431,9 +431,9 @@ imaxdiv (intmax_t __numer, intmax_t __denom) __THROW /* Like `strtol' but convert to `intmax_t'. */ # ifndef __strtoll_internal_defined __extension__ -extern long long int __strtoll_internal __P ((__const char *__restrict __nptr, - char **__restrict __endptr, - int __base, int __group)); +extern long long int __strtoll_internal (__const char *__restrict __nptr, + char **__restrict __endptr, + int __base, int __group) __THROW; # define __strtoll_internal_defined 1 # endif extern __inline intmax_t @@ -446,12 +446,12 @@ strtoimax (__const char *__restrict nptr, char **__restrict endptr, /* Like `strtoul' but convert to `uintmax_t'. */ # ifndef __strtoull_internal_defined __extension__ -extern unsigned long long int __strtoull_internal __P ((__const char * - __restrict __nptr, - char ** - __restrict __endptr, - int __base, - int __group)); +extern unsigned long long int __strtoull_internal (__const char * + __restrict __nptr, + char ** + __restrict __endptr, + int __base, + int __group) __THROW; # define __strtoull_internal_defined 1 # endif extern __inline uintmax_t @@ -464,10 +464,10 @@ strtoumax (__const char *__restrict nptr, char **__restrict endptr, /* Like `wcstol' but convert to `intmax_t'. */ # ifndef __wcstoll_internal_defined __extension__ -extern long long int __wcstoll_internal __P ((__const wchar_t * - __restrict __nptr, - wchar_t **__restrict __endptr, - int __base, int __group)); +extern long long int __wcstoll_internal (__const wchar_t * + __restrict __nptr, + wchar_t **__restrict __endptr, + int __base, int __group) __THROW; # define __wcstoll_internal_defined 1 # endif extern __inline intmax_t @@ -481,12 +481,12 @@ wcstoimax (__const wchar_t *__restrict nptr, wchar_t **__restrict endptr, /* Like `wcstoul' but convert to `uintmax_t'. */ # ifndef __wcstoull_internal_defined __extension__ -extern unsigned long long int __wcstoull_internal __P ((__const wchar_t * - __restrict __nptr, - wchar_t ** - __restrict __endptr, - int __base, - int __group)); +extern unsigned long long int __wcstoull_internal (__const wchar_t * + __restrict __nptr, + wchar_t ** + __restrict __endptr, + int __base, + int __group) __THROW; # define __wcstoull_internal_defined 1 # endif extern __inline uintmax_t -- cgit v1.2.3