1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00
1999-10-19  Andreas Jaeger  <aj@suse.de>

	* include/bits/ipc.h: Remove K&R compatibility.
	* include/libintl.h: Likewise.
	* include/math.h: Likewise.
	* include/mntent.h: Likewise
	* include/netdb.h: Likewise.
	* include/pwd.h: Likewise.
	* include/sched.h: Likewise.
	* include/shadow.h: Likewise
	* include/stdlib.h: Likewise.
	* include/sys/file.h: Likewise.
	* include/sys/gmon.h: Likewise.
	* include/sys/ioctl.h: Likewise.
	* include/sys/mman.h: Likewise.
	* include/sys/resource.h: Likewise.
	* include/sys/socket.h: Likewise.
	* include/sys/stat.h: Likewise.
	* include/sys/sysinfo.h: Likewise.
	* include/sys/time.h: Likewise.
	* include/sys/times.h: Likewise.
	* include/sys/uio.h: Likewise.
	* include/sys/wait.h: Likewise.
	* include/termios.h: Likewise.
	* include/time.h: Likewise.
	* include/ulimit.h: Likewise.
	* include/utmp.h: Likewise.
	* include/wchar.h: Likewise.
	* include/wctype.h: Likewise.

1999-10-19  Andreas Jaeger  <aj@suse.de>

	* math/libm-test.inc: Remove one K&R compatibility.
	(main): Enable nexttoward_test.

	* math/gen-libm-test.pl (output_ulps): Output name of Ulps file to
	libm-test-ulps.h; pretty print output a bit.

1999-10-19  Andreas Jaeger  <aj@suse.de>

	* iconv/iconv_prog.c (main): Set exit value in case that reading
	from stdin failed [PR libc/1404].
This commit is contained in:
Ulrich Drepper
1999-10-19 13:53:34 +00:00
parent 8847214f23
commit fe559c5e1c
31 changed files with 352 additions and 305 deletions

View File

@ -1,3 +1,46 @@
1999-10-19 Andreas Jaeger <aj@suse.de>
* include/bits/ipc.h: Remove K&R compatibility.
* include/libintl.h: Likewise.
* include/math.h: Likewise.
* include/mntent.h: Likewise
* include/netdb.h: Likewise.
* include/pwd.h: Likewise.
* include/sched.h: Likewise.
* include/shadow.h: Likewise
* include/stdlib.h: Likewise.
* include/sys/file.h: Likewise.
* include/sys/gmon.h: Likewise.
* include/sys/ioctl.h: Likewise.
* include/sys/mman.h: Likewise.
* include/sys/resource.h: Likewise.
* include/sys/socket.h: Likewise.
* include/sys/stat.h: Likewise.
* include/sys/sysinfo.h: Likewise.
* include/sys/time.h: Likewise.
* include/sys/times.h: Likewise.
* include/sys/uio.h: Likewise.
* include/sys/wait.h: Likewise.
* include/termios.h: Likewise.
* include/time.h: Likewise.
* include/ulimit.h: Likewise.
* include/utmp.h: Likewise.
* include/wchar.h: Likewise.
* include/wctype.h: Likewise.
1999-10-19 Andreas Jaeger <aj@suse.de>
* math/libm-test.inc: Remove one K&R compatibility.
(main): Enable nexttoward_test.
* math/gen-libm-test.pl (output_ulps): Output name of Ulps file to
libm-test-ulps.h; pretty print output a bit.
1999-10-19 Andreas Jaeger <aj@suse.de>
* iconv/iconv_prog.c (main): Set exit value in case that reading
from stdin failed [PR libc/1404].
1999-10-18 Andreas Jaeger <aj@suse.de> 1999-10-18 Andreas Jaeger <aj@suse.de>
Added improved math testsuite: Added improved math testsuite:

View File

@ -162,7 +162,10 @@ main (int argc, char *argv[])
specified with the `-o' parameter. If we have no file given as specified with the `-o' parameter. If we have no file given as
the parameter process all from stdin. */ the parameter process all from stdin. */
if (remaining == argc) if (remaining == argc)
process_file (cd, stdin, output); {
if (process_file (cd, stdin, output) != 0)
status = 1;
}
else else
do do
{ {

View File

@ -3,8 +3,8 @@
__BEGIN_DECLS __BEGIN_DECLS
/* The actual system call: all functions are multiplexed by this. */ /* The actual system call: all functions are multiplexed by this. */
extern int __syscall_ipc __P ((int __call, int __first, int __second, extern int __syscall_ipc (int __call, int __first, int __second,
int __third, void *__ptr)); int __third, void *__ptr) __THROW;
__END_DECLS __END_DECLS

View File

@ -2,14 +2,14 @@
#include <intl/libintl.h> #include <intl/libintl.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern char *__gettext __P ((__const char *__msgid)); extern char *__gettext (__const char *__msgid) __THROW;
extern char *__dgettext __P ((__const char *__domainname, extern char *__dgettext (__const char *__domainname,
__const char *__msgid)); __const char *__msgid) __THROW;
extern char *__dcgettext __P ((__const char *__domainname, extern char *__dcgettext (__const char *__domainname,
__const char *__msgid, int __category)); __const char *__msgid, int __category) __THROW;
extern char *__textdomain __P ((__const char *__domainname)); extern char *__textdomain (__const char *__domainname) __THROW;
extern char *__bindtextdomain __P ((__const char *__domainname, extern char *__bindtextdomain (__const char *__domainname,
__const char *__dirname)); __const char *__dirname) __THROW;
extern const char _libc_intl_domainname[]; extern const char _libc_intl_domainname[];
/* Define the macros `_' and `N_' for conveniently marking translatable /* Define the macros `_' and `N_' for conveniently marking translatable

View File

@ -3,6 +3,6 @@
#include <math/math.h> #include <math/math.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern int __matherr __P ((struct exception *__exc)); extern int __matherr (struct exception *__exc) __THROW;
#endif #endif

View File

@ -2,12 +2,12 @@
#include <misc/mntent.h> #include <misc/mntent.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern FILE *__setmntent __P ((__const char *__file, __const char *__mode)); extern FILE *__setmntent (__const char *__file, __const char *__mode) __THROW;
extern struct mntent *__getmntent_r __P ((FILE *__stream, extern struct mntent *__getmntent_r (FILE *__stream,
struct mntent *__result, struct mntent *__result,
char *__buffer, int __bufsize)); char *__buffer, int __bufsize) __THROW;
extern int __addmntent __P ((FILE *__stream, __const struct mntent *__mnt)); extern int __addmntent (FILE *__stream, __const struct mntent *__mnt) __THROW;
extern int __endmntent __P ((FILE *__stream)); extern int __endmntent (FILE *__stream) __THROW;
extern char *__hasmntopt __P ((__const struct mntent *__mnt, extern char *__hasmntopt (__const struct mntent *__mnt,
__const char *__opt)); __const char *__opt) __THROW;
#endif #endif

View File

@ -2,79 +2,79 @@
#include <resolv/netdb.h> #include <resolv/netdb.h>
/* Document internal interfaces. */ /* Document internal interfaces. */
extern int __gethostent_r __P ((struct hostent *__restrict __result_buf, extern int __gethostent_r (struct hostent *__restrict __result_buf,
char *__restrict __buf, size_t __buflen, char *__restrict __buf, size_t __buflen,
struct hostent **__restrict __result, struct hostent **__restrict __result,
int *__restrict __h_errnop)); int *__restrict __h_errnop) __THROW;
extern int __gethostbyaddr_r __P ((__const char *__restrict __addr, extern int __gethostbyaddr_r (__const char *__restrict __addr,
size_t __len, int __type, size_t __len, int __type,
struct hostent *__restrict __result_buf, struct hostent *__restrict __result_buf,
char *__restrict __buf, size_t __buflen, char *__restrict __buf, size_t __buflen,
struct hostent **__restrict __result, struct hostent **__restrict __result,
int *__restrict __h_errnop)); int *__restrict __h_errnop) __THROW;
extern int __gethostbyname_r __P ((__const char *__restrict __name, extern int __gethostbyname_r (__const char *__restrict __name,
struct hostent *__restrict __result_buf, struct hostent *__restrict __result_buf,
char *__restrict __buf, size_t __buflen, char *__restrict __buf, size_t __buflen,
struct hostent **__restrict __result, struct hostent **__restrict __result,
int *__restrict __h_errnop)); int *__restrict __h_errnop) __THROW;
extern int __gethostbyname2_r __P ((__const char *__restrict __name, int __af, extern int __gethostbyname2_r (__const char *__restrict __name, int __af,
struct hostent *__restrict __result_buf, struct hostent *__restrict __result_buf,
char *__restrict __buf, size_t __buflen,
struct hostent **__restrict __result,
int *__restrict __h_errnop));
extern int __getnetent_r __P ((struct netent *__restrict __result_buf,
char *__restrict __buf, size_t __buflen, char *__restrict __buf, size_t __buflen,
struct netent **__restrict __result, struct hostent **__restrict __result,
int *__restrict __h_errnop)); int *__restrict __h_errnop) __THROW;
extern int __getnetbyaddr_r __P ((unsigned long int __net, int __type, extern int __getnetent_r (struct netent *__restrict __result_buf,
struct netent *__restrict __result_buf, char *__restrict __buf, size_t __buflen,
char *__restrict __buf, size_t __buflen, struct netent **__restrict __result,
struct netent **__restrict __result, int *__restrict __h_errnop) __THROW;
int *__restrict __h_errnop));
extern int __getnetbyname_r __P ((__const char *__restrict __name, extern int __getnetbyaddr_r (unsigned long int __net, int __type,
struct netent *__restrict __result_buf, struct netent *__restrict __result_buf,
char *__restrict __buf, size_t __buflen, char *__restrict __buf, size_t __buflen,
struct netent **__restrict __result, struct netent **__restrict __result,
int *__restrict __h_errnop)); int *__restrict __h_errnop) __THROW;
extern int __getservent_r __P ((struct servent *__restrict __result_buf, extern int __getnetbyname_r (__const char *__restrict __name,
char *__restrict __buf, size_t __buflen, struct netent *__restrict __result_buf,
struct servent **__restrict __result)); char *__restrict __buf, size_t __buflen,
struct netent **__restrict __result,
int *__restrict __h_errnop) __THROW;
extern int __getservbyname_r __P ((__const char *__restrict __name, extern int __getservent_r (struct servent *__restrict __result_buf,
__const char *__restrict __proto, char *__restrict __buf, size_t __buflen,
struct servent *__restrict __result_buf, struct servent **__restrict __result) __THROW;
char *__restrict __buf, size_t __buflen,
struct servent **__restrict __result));
extern int __getservbyport_r __P ((int __port, extern int __getservbyname_r (__const char *__restrict __name,
__const char *__restrict __proto, __const char *__restrict __proto,
struct servent *__restrict __result_buf, struct servent *__restrict __result_buf,
char *__restrict __buf, size_t __buflen, char *__restrict __buf, size_t __buflen,
struct servent **__restrict __result)); struct servent **__restrict __result) __THROW;
extern int __getprotoent_r __P ((struct protoent *__restrict __result_buf, extern int __getservbyport_r (int __port,
__const char *__restrict __proto,
struct servent *__restrict __result_buf,
char *__restrict __buf, size_t __buflen,
struct servent **__restrict __result) __THROW;
extern int __getprotoent_r (struct protoent *__restrict __result_buf,
char *__restrict __buf, size_t __buflen,
struct protoent **__restrict __result) __THROW;
extern int __getprotobyname_r (__const char *__restrict __name,
struct protoent *__restrict __result_buf,
char *__restrict __buf, size_t __buflen,
struct protoent **__restrict __result) __THROW;
extern int __getprotobynumber_r (int __proto,
struct protoent *__restrict __res_buf,
char *__restrict __buf, size_t __buflen, char *__restrict __buf, size_t __buflen,
struct protoent **__restrict __result)); struct protoent **__restrict __result) __THROW;
extern int __getprotobyname_r __P ((__const char *__restrict __name, extern int __getnetgrent_r (char **__restrict __hostp,
struct protoent *__restrict __result_buf, char **__restrict __userp,
char *__restrict __buf, size_t __buflen, char **__restrict __domainp,
struct protoent **__restrict __result)); char *__restrict __buffer, size_t __buflen) __THROW;
extern int __getprotobynumber_r __P ((int __proto,
struct protoent *__restrict __res_buf,
char *__restrict __buf, size_t __buflen,
struct protoent **__restrict __result));
extern int __getnetgrent_r __P ((char **__restrict __hostp,
char **__restrict __userp,
char **__restrict __domainp,
char *__restrict __buffer, size_t __buflen));
#endif /* !_NETDB_H */ #endif /* !_NETDB_H */

View File

@ -2,15 +2,15 @@
#include <pwd/pwd.h> #include <pwd/pwd.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern int __getpwent_r __P ((struct passwd *__resultbuf, char *__buffer, extern int __getpwent_r (struct passwd *__resultbuf, char *__buffer,
size_t __buflen, struct passwd **__result)); size_t __buflen, struct passwd **__result) __THROW;
extern int __getpwuid_r __P ((__uid_t __uid, struct passwd *__resultbuf, extern int __getpwuid_r (__uid_t __uid, struct passwd *__resultbuf,
char *__buffer, size_t __buflen, char *__buffer, size_t __buflen,
struct passwd **__result)); struct passwd **__result) __THROW;
extern int __getpwnam_r __P ((__const char *__name, struct passwd *__resultbuf, extern int __getpwnam_r (__const char *__name, struct passwd *__resultbuf,
char *__buffer, size_t __buflen, char *__buffer, size_t __buflen,
struct passwd **__result)); struct passwd **__result) __THROW;
extern int __fgetpwent_r __P ((FILE * __stream, struct passwd *__resultbuf, extern int __fgetpwent_r (FILE * __stream, struct passwd *__resultbuf,
char *__buffer, size_t __buflen, char *__buffer, size_t __buflen,
struct passwd **__result)); struct passwd **__result) __THROW;
#endif #endif

View File

@ -2,18 +2,18 @@
#include <posix/sched.h> #include <posix/sched.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern int __sched_setparam __P ((__pid_t __pid, extern int __sched_setparam (__pid_t __pid,
__const struct sched_param *__param)); __const struct sched_param *__param) __THROW;
extern int __sched_getparam __P ((__pid_t __pid, struct sched_param *__param)); extern int __sched_getparam (__pid_t __pid, struct sched_param *__param) __THROW;
extern int __sched_setscheduler __P ((__pid_t __pid, int __policy, extern int __sched_setscheduler (__pid_t __pid, int __policy,
__const struct sched_param *__param)); __const struct sched_param *__param) __THROW;
extern int __sched_getscheduler __P ((__pid_t __pid)); extern int __sched_getscheduler (__pid_t __pid) __THROW;
extern int __sched_yield __P ((void)); extern int __sched_yield (void) __THROW;
extern int __sched_get_priority_max __P ((int __algorithm)); extern int __sched_get_priority_max (int __algorithm) __THROW;
extern int __sched_get_priority_min __P ((int __algorithm)); extern int __sched_get_priority_min (int __algorithm) __THROW;
extern int __sched_rr_get_interval __P ((__pid_t __pid, struct timespec *__t)); extern int __sched_rr_get_interval (__pid_t __pid, struct timespec *__t) __THROW;
/* This is Linux specific. */ /* This is Linux specific. */
extern int __clone __P ((int (*__fn) (void *__arg), void *__child_stack, extern int __clone (int (*__fn) (void *__arg), void *__child_stack,
int __flags, void *__arg)); int __flags, void *__arg) __THROW;
#endif #endif

View File

@ -2,17 +2,17 @@
#include <shadow/shadow.h> #include <shadow/shadow.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern int __getspent_r __P ((struct spwd *__result_buf, char *__buffer, extern int __getspent_r (struct spwd *__result_buf, char *__buffer,
size_t __buflen, struct spwd **__result)); size_t __buflen, struct spwd **__result) __THROW;
extern int __getspnam_r __P ((__const char *__name, struct spwd *__result_buf, extern int __getspnam_r (__const char *__name, struct spwd *__result_buf,
char *__buffer, size_t __buflen, char *__buffer, size_t __buflen,
struct spwd **__result)); struct spwd **__result) __THROW;
extern int __sgetspent_r __P ((__const char *__string, extern int __sgetspent_r (__const char *__string,
struct spwd *__result_buf, char *__buffer, struct spwd *__result_buf, char *__buffer,
size_t __buflen, struct spwd **__result)); size_t __buflen, struct spwd **__result) __THROW;
extern int __fgetspent_r __P ((FILE *__stream, struct spwd *__result_buf, extern int __fgetspent_r (FILE *__stream, struct spwd *__result_buf,
char *__buffer, size_t __buflen, char *__buffer, size_t __buflen,
struct spwd **__result)); struct spwd **__result) __THROW;
extern int __lckpwdf __P ((void)); extern int __lckpwdf (void) __THROW;
extern int __ulckpwdf __P ((void)); extern int __ulckpwdf (void) __THROW;
#endif #endif

View File

@ -8,44 +8,44 @@
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
#ifndef __Need_M_And_C #ifndef __Need_M_And_C
extern int32_t __random __P ((void)); extern int32_t __random (void) __THROW;
extern void __srandom __P ((unsigned int __seed)); extern void __srandom (unsigned int __seed) __THROW;
extern __ptr_t __initstate __P ((unsigned int __seed, __ptr_t __statebuf, extern void *__initstate (unsigned int __seed, void *__statebuf,
size_t __statelen)); size_t __statelen) __THROW;
extern __ptr_t __setstate __P ((__ptr_t __statebuf)); extern void *__setstate (void *__statebuf) __THROW;
extern int __random_r __P ((struct random_data *__buf, int32_t *__result)); extern int __random_r (struct random_data *__buf, int32_t *__result) __THROW;
extern int __srandom_r __P ((unsigned int __seed, struct random_data *__buf)); extern int __srandom_r (unsigned int __seed, struct random_data *__buf) __THROW;
extern int __initstate_r __P ((unsigned int __seed, __ptr_t __statebuf, extern int __initstate_r (unsigned int __seed, void *__statebuf,
size_t __statelen, struct random_data *__buf)); size_t __statelen, struct random_data *__buf) __THROW;
extern int __setstate_r __P ((__ptr_t __statebuf, struct random_data *__buf)); extern int __setstate_r (void *__statebuf, struct random_data *__buf) __THROW;
extern int __rand_r __P ((unsigned int *__seed)); extern int __rand_r (unsigned int *__seed) __THROW;
extern int __erand48_r __P ((unsigned short int __xsubi[3], extern int __erand48_r (unsigned short int __xsubi[3],
struct drand48_data *__buffer, double *__result)); struct drand48_data *__buffer, double *__result) __THROW;
extern int __nrand48_r __P ((unsigned short int __xsubi[3], extern int __nrand48_r (unsigned short int __xsubi[3],
struct drand48_data *__buffer, struct drand48_data *__buffer,
long int *__result)); long int *__result) __THROW;
extern int __jrand48_r __P ((unsigned short int __xsubi[3], extern int __jrand48_r (unsigned short int __xsubi[3],
struct drand48_data *__buffer, struct drand48_data *__buffer,
long int *__result)); long int *__result) __THROW;
extern int __srand48_r __P ((long int __seedval, extern int __srand48_r (long int __seedval,
struct drand48_data *__buffer)); struct drand48_data *__buffer) __THROW;
extern int __seed48_r __P ((unsigned short int __seed16v[3], extern int __seed48_r (unsigned short int __seed16v[3],
struct drand48_data *__buffer)); struct drand48_data *__buffer) __THROW;
extern int __lcong48_r __P ((unsigned short int __param[7], extern int __lcong48_r (unsigned short int __param[7],
struct drand48_data *__buffer)); struct drand48_data *__buffer) __THROW;
/* Internal function to compute next state of the generator. */ /* Internal function to compute next state of the generator. */
extern int __drand48_iterate __P ((unsigned short int __xsubi[3], extern int __drand48_iterate (unsigned short int __xsubi[3],
struct drand48_data *__buffer)); struct drand48_data *__buffer) __THROW;
extern int __setenv __P ((__const char *__name, __const char *__value, extern int __setenv (__const char *__name, __const char *__value,
int __replace)); int __replace) __THROW;
extern void __unsetenv __P ((__const char *__name)); extern void __unsetenv (__const char *__name) __THROW;
extern int __clearenv __P ((void)); extern int __clearenv (void) __THROW;
extern char *__canonicalize_file_name __P ((__const char *__name)); extern char *__canonicalize_file_name (__const char *__name) __THROW;
extern char *__realpath __P ((__const char *__name, char *__resolved)); extern char *__realpath (__const char *__name, char *__resolved) __THROW;
extern int __ptsname_r __P ((int __fd, char *__buf, size_t __buflen)); extern int __ptsname_r (int __fd, char *__buf, size_t __buflen) __THROW;
extern int __getpt __P ((void)); extern int __getpt (void) __THROW;
extern int __add_to_environ (const char *name, const char *value, extern int __add_to_environ (const char *name, const char *value,
const char *combines, int replace); const char *combines, int replace);

View File

@ -2,5 +2,5 @@
#include <misc/sys/file.h> #include <misc/sys/file.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern int __flock __P ((int __fd, int __operation)); extern int __flock (int __fd, int __operation) __THROW;
#endif #endif

View File

@ -4,6 +4,6 @@
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
/* Write current profiling data to file. */ /* Write current profiling data to file. */
extern void __write_profiling __P ((void)); extern void __write_profiling (void) __THROW;
extern void write_profiling __P ((void)); extern void write_profiling (void) __THROW;
#endif #endif

View File

@ -2,5 +2,5 @@
#include <misc/sys/ioctl.h> #include <misc/sys/ioctl.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern int __ioctl __P ((int __fd, unsigned long int __request, ...)); extern int __ioctl (int __fd, unsigned long int __request, ...) __THROW;
#endif #endif

View File

@ -2,14 +2,14 @@
#include <misc/sys/mman.h> #include <misc/sys/mman.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern __ptr_t __mmap __P ((__ptr_t __addr, size_t __len, int __prot, extern void *__mmap (void *__addr, size_t __len, int __prot,
int __flags, int __fd, __off_t __offset)); int __flags, int __fd, __off_t __offset) __THROW;
extern __ptr_t __mmap64 __P ((__ptr_t __addr, size_t __len, int __prot, extern void *__mmap64 (void *__addr, size_t __len, int __prot,
int __flags, int __fd, __off64_t __offset)); int __flags, int __fd, __off64_t __offset) __THROW;
extern int __munmap __P ((__ptr_t __addr, size_t __len)); extern int __munmap (void *__addr, size_t __len) __THROW;
extern int __mprotect __P ((__ptr_t __addr, size_t __len, int __prot)); extern int __mprotect (void *__addr, size_t __len, int __prot) __THROW;
/* This one is Linux specific. */ /* This one is Linux specific. */
extern __ptr_t __mremap __P ((__ptr_t __addr, size_t __old_len, extern void *__mremap (void *__addr, size_t __old_len,
size_t __new_len, int __may_move)); size_t __new_len, int __may_move) __THROW;
#endif #endif

View File

@ -2,7 +2,7 @@
#include <resource/sys/resource.h> #include <resource/sys/resource.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern int __getrlimit __P ((enum __rlimit_resource __resource, extern int __getrlimit (enum __rlimit_resource __resource,
struct rlimit *__rlimits)); struct rlimit *__rlimits) __THROW;
extern int __getrusage __P ((enum __rusage_who __who, struct rusage *__usage)); extern int __getrusage (enum __rusage_who __who, struct rusage *__usage) __THROW;
#endif #endif

View File

@ -2,5 +2,5 @@
#include <socket/sys/socket.h> #include <socket/sys/socket.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern int __socket __P ((int __domain, int __type, int __protocol)); extern int __socket (int __domain, int __type, int __protocol) __THROW;
#endif #endif

View File

@ -2,15 +2,15 @@
#include <io/sys/stat.h> #include <io/sys/stat.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern int __stat __P ((__const char *__file, struct stat *__buf)); extern int __stat (__const char *__file, struct stat *__buf) __THROW;
extern int __fstat __P ((int __fd, struct stat *__buf)); extern int __fstat (int __fd, struct stat *__buf) __THROW;
extern int __lstat __P ((__const char *__file, struct stat *__buf)); extern int __lstat (__const char *__file, struct stat *__buf) __THROW;
extern int __chmod __P ((__const char *__file, __mode_t __mode)); extern int __chmod (__const char *__file, __mode_t __mode) __THROW;
extern int __fchmod __P ((int __fd, __mode_t __mode)); extern int __fchmod (int __fd, __mode_t __mode) __THROW;
extern __mode_t __umask __P ((__mode_t __mask)); extern __mode_t __umask (__mode_t __mask) __THROW;
extern int __mkdir __P ((__const char *__path, __mode_t __mode)); extern int __mkdir (__const char *__path, __mode_t __mode) __THROW;
extern int __mknod __P ((__const char *__path, extern int __mknod (__const char *__path,
__mode_t __mode, __dev_t __dev)); __mode_t __mode, __dev_t __dev) __THROW;
extern __inline__ int __stat (__const char *__path, struct stat *__statbuf) extern __inline__ int __stat (__const char *__path, struct stat *__statbuf)
{ {
return __xstat (_STAT_VER, __path, __statbuf); return __xstat (_STAT_VER, __path, __statbuf);

View File

@ -4,15 +4,15 @@
/* Now we define the internal interface. */ /* Now we define the internal interface. */
/* Return number of configured processors. */ /* Return number of configured processors. */
extern int __get_nprocs_conf __P ((void)); extern int __get_nprocs_conf (void) __THROW;
/* Return number of available processors. */ /* Return number of available processors. */
extern int __get_nprocs __P ((void)); extern int __get_nprocs (void) __THROW;
/* Return number of physical pages of memory in the system. */ /* Return number of physical pages of memory in the system. */
extern int __get_phys_pages __P ((void)); extern int __get_phys_pages (void) __THROW;
/* Return number of available physical pages of memory in the system. */ /* Return number of available physical pages of memory in the system. */
extern int __get_avphys_pages __P ((void)); extern int __get_avphys_pages (void) __THROW;
#endif /* sys/sysinfo.h */ #endif /* sys/sysinfo.h */

View File

@ -2,16 +2,16 @@
#include <time/sys/time.h> #include <time/sys/time.h>
/* Now document the internal interfaces. */ /* Now document the internal interfaces. */
extern int __gettimeofday __P ((struct timeval *__tv, extern int __gettimeofday (struct timeval *__tv,
struct timezone *__tz)); struct timezone *__tz) __THROW;
extern int __settimeofday __P ((__const struct timeval *__tv, extern int __settimeofday (__const struct timeval *__tv,
__const struct timezone *__tz)); __const struct timezone *__tz) __THROW;
extern int __adjtime __P ((__const struct timeval *__delta, extern int __adjtime (__const struct timeval *__delta,
struct timeval *__olddelta)); struct timeval *__olddelta) __THROW;
extern int __getitimer __P ((enum __itimer_which __which, extern int __getitimer (enum __itimer_which __which,
struct itimerval *__value)); struct itimerval *__value) __THROW;
extern int __setitimer __P ((enum __itimer_which __which, extern int __setitimer (enum __itimer_which __which,
__const struct itimerval *__new, __const struct itimerval *__new,
struct itimerval *__old)); struct itimerval *__old) __THROW;
extern int __utimes __P ((__const char *__file, struct timeval __tvp[2])); extern int __utimes (__const char *__file, struct timeval __tvp[2]) __THROW;
#endif #endif

View File

@ -2,5 +2,5 @@
#include <posix/sys/times.h> #include <posix/sys/times.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern clock_t __times __P ((struct tms *__buffer)); extern clock_t __times (struct tms *__buffer) __THROW;
#endif #endif

View File

@ -2,8 +2,8 @@
#include <misc/sys/uio.h> #include <misc/sys/uio.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern ssize_t __readv __P ((int __fd, __const struct iovec *__vector, extern ssize_t __readv (int __fd, __const struct iovec *__vector,
int __count)); int __count) __THROW;
extern ssize_t __writev __P ((int __fd, __const struct iovec *__vector, extern ssize_t __writev (int __fd, __const struct iovec *__vector,
int __count)); int __count) __THROW;
#endif #endif

View File

@ -2,10 +2,10 @@
#include <posix/sys/wait.h> #include <posix/sys/wait.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern __pid_t __waitpid __P ((__pid_t __pid, int *__stat_loc, extern __pid_t __waitpid (__pid_t __pid, int *__stat_loc,
int __options)); int __options) __THROW;
extern __pid_t __wait3 __P ((__WAIT_STATUS __stat_loc, extern __pid_t __wait3 (__WAIT_STATUS __stat_loc,
int __options, struct rusage * __usage)); int __options, struct rusage * __usage) __THROW;
extern __pid_t __wait4 __P ((__pid_t __pid, __WAIT_STATUS __stat_loc, extern __pid_t __wait4 (__pid_t __pid, __WAIT_STATUS __stat_loc,
int __options, struct rusage *__usage)); int __options, struct rusage *__usage) __THROW;
#endif #endif

View File

@ -2,5 +2,5 @@
#include <termios/termios.h> #include <termios/termios.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern int __tcgetattr __P ((int __fd, struct termios *__termios_p)); extern int __tcgetattr (int __fd, struct termios *__termios_p) __THROW;
#endif #endif

View File

@ -14,7 +14,7 @@ extern const unsigned short int __mon_yday[2][13];
extern struct tm _tmbuf; extern struct tm _tmbuf;
/* Defined in tzset.c. */ /* Defined in tzset.c. */
extern char *__tzstring __P ((const char *string)); extern char *__tzstring (const char *string) __THROW;
/* Defined in tzset.c. */ /* Defined in tzset.c. */
extern size_t __tzname_cur_max; extern size_t __tzname_cur_max;
@ -22,47 +22,47 @@ extern size_t __tzname_cur_max;
extern int __use_tzfile; extern int __use_tzfile;
extern void __tzfile_read __P ((const char *file, size_t extra, extern void __tzfile_read (const char *file, size_t extra,
char **extrap)); char **extrap) __THROW;
extern int __tzfile_compute __P ((time_t timer, int use_localtime, extern int __tzfile_compute (time_t timer, int use_localtime,
long int *leap_correct, int *leap_hit, long int *leap_correct, int *leap_hit,
struct tm *tp)); struct tm *tp) __THROW;
extern void __tzfile_default __P ((const char *std, const char *dst, extern void __tzfile_default (const char *std, const char *dst,
long int stdoff, long int dstoff)); long int stdoff, long int dstoff) __THROW;
/* Subroutine of `mktime'. Return the `time_t' representation of TP and /* Subroutine of `mktime'. Return the `time_t' representation of TP and
normalize TP, given that a `struct tm *' maps to a `time_t' as performed normalize TP, given that a `struct tm *' maps to a `time_t' as performed
by FUNC. Keep track of next guess for time_t offset in *OFFSET. */ by FUNC. Keep track of next guess for time_t offset in *OFFSET. */
extern time_t __mktime_internal __P ((struct tm *__tp, extern time_t __mktime_internal (struct tm *__tp,
struct tm *(*__func) (const time_t *, struct tm *(*__func) (const time_t *,
struct tm *), struct tm *),
time_t *__offset)); time_t *__offset) __THROW;
extern struct tm *__localtime_r __P ((__const time_t *__timer, extern struct tm *__localtime_r (__const time_t *__timer,
struct tm *__tp)); struct tm *__tp) __THROW;
extern struct tm *__gmtime_r __P ((__const time_t *__restrict __timer, extern struct tm *__gmtime_r (__const time_t *__restrict __timer,
struct tm *__restrict __tp)); struct tm *__restrict __tp) __THROW;
/* Compute the `struct tm' representation of *T, /* Compute the `struct tm' representation of *T,
offset OFFSET seconds east of UTC, offset OFFSET seconds east of UTC,
and store year, yday, mon, mday, wday, hour, min, sec into *TP. and store year, yday, mon, mday, wday, hour, min, sec into *TP.
Return nonzero if successful. */ Return nonzero if successful. */
extern int __offtime __P ((__const time_t *__timer, extern int __offtime (__const time_t *__timer,
long int __offset, long int __offset,
struct tm *__tp)); struct tm *__tp) __THROW;
extern char *__asctime_r __P ((__const struct tm *__tp, char *__buf)); extern char *__asctime_r (__const struct tm *__tp, char *__buf) __THROW;
extern void __tzset __P ((void)); extern void __tzset (void) __THROW;
/* Prototype for the internal function to get information based on TZ. */ /* Prototype for the internal function to get information based on TZ. */
extern struct tm *__tz_convert __P ((const time_t *timer, int use_localtime, struct tm *tp)); extern struct tm *__tz_convert (const time_t *timer, int use_localtime, struct tm *tp) __THROW;
/* Return the maximum length of a timezone name. /* Return the maximum length of a timezone name.
This is what `sysconf (_SC_TZNAME_MAX)' does. */ This is what `sysconf (_SC_TZNAME_MAX)' does. */
extern long int __tzname_max __P ((void)); extern long int __tzname_max (void) __THROW;
extern int __nanosleep __P ((__const struct timespec *__requested_time, extern int __nanosleep (__const struct timespec *__requested_time,
struct timespec *__remaining)); struct timespec *__remaining) __THROW;
extern int __getdate_r __P ((__const char *__string, struct tm *__resbufp)); extern int __getdate_r (__const char *__string, struct tm *__resbufp) __THROW;
#endif #endif
#endif #endif

View File

@ -2,5 +2,5 @@
#include <resource/ulimit.h> #include <resource/ulimit.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern long int __ulimit __P ((int __cmd, ...)); extern long int __ulimit (int __cmd, ...) __THROW;
#endif #endif

View File

@ -2,18 +2,18 @@
#include <login/utmp.h> #include <login/utmp.h>
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern void __updwtmp __P ((__const char *__wtmp_file, extern void __updwtmp (__const char *__wtmp_file,
__const struct utmp *__utmp)); __const struct utmp *__utmp) __THROW;
extern int __utmpname __P ((__const char *__file)); extern int __utmpname (__const char *__file) __THROW;
extern struct utmp *__getutent __P ((void)); extern struct utmp *__getutent (void) __THROW;
extern void __setutent __P ((void)); extern void __setutent (void) __THROW;
extern void __endutent __P ((void)); extern void __endutent (void) __THROW;
extern struct utmp *__getutid __P ((__const struct utmp *__id)); extern struct utmp *__getutid (__const struct utmp *__id) __THROW;
extern struct utmp *__getutline __P ((__const struct utmp *__line)); extern struct utmp *__getutline (__const struct utmp *__line) __THROW;
extern struct utmp *__pututline __P ((__const struct utmp *__utmp_ptr)); extern struct utmp *__pututline (__const struct utmp *__utmp_ptr) __THROW;
extern int __getutent_r __P ((struct utmp *__buffer, struct utmp **__result)); extern int __getutent_r (struct utmp *__buffer, struct utmp **__result) __THROW;
extern int __getutid_r __P ((__const struct utmp *__id, struct utmp *__buffer, extern int __getutid_r (__const struct utmp *__id, struct utmp *__buffer,
struct utmp **__result)); struct utmp **__result) __THROW;
extern int __getutline_r __P ((__const struct utmp *__line, extern int __getutline_r (__const struct utmp *__line,
struct utmp *__buffer, struct utmp **__result)); struct utmp *__buffer, struct utmp **__result) __THROW;
#endif #endif

View File

@ -3,45 +3,45 @@
# ifdef _WCHAR_H # ifdef _WCHAR_H
/* Now define the internal interfaces. */ /* Now define the internal interfaces. */
extern int __wcscasecmp __P ((__const wchar_t *__s1, __const wchar_t *__s2)); extern int __wcscasecmp (__const wchar_t *__s1, __const wchar_t *__s2) __THROW;
extern int __wcsncasecmp __P ((__const wchar_t *__s1, __const wchar_t *__s2, extern int __wcsncasecmp (__const wchar_t *__s1, __const wchar_t *__s2,
size_t __n)); size_t __n) __THROW;
extern size_t __wcsnlen __P ((__const wchar_t *__s, size_t __maxlen)); extern size_t __wcsnlen (__const wchar_t *__s, size_t __maxlen) __THROW;
extern wint_t __btowc __P ((int __c)); extern wint_t __btowc (int __c) __THROW;
extern int __mbsinit __P ((__const __mbstate_t *__ps)); extern int __mbsinit (__const __mbstate_t *__ps) __THROW;
extern size_t __mbrtowc __P ((wchar_t *__restrict __pwc, extern size_t __mbrtowc (wchar_t *__restrict __pwc,
__const char *__restrict __s, size_t __n, __const char *__restrict __s, size_t __n,
__mbstate_t *__restrict __p)); __mbstate_t *__restrict __p) __THROW;
extern size_t __wcrtomb __P ((char *__restrict __s, wchar_t __wc, extern size_t __wcrtomb (char *__restrict __s, wchar_t __wc,
__mbstate_t *__restrict __ps)); __mbstate_t *__restrict __ps) __THROW;
extern size_t __mbsrtowcs __P ((wchar_t *__restrict __dst, extern size_t __mbsrtowcs (wchar_t *__restrict __dst,
__const char **__restrict __src, __const char **__restrict __src,
size_t __len, __mbstate_t *__restrict __ps)); size_t __len, __mbstate_t *__restrict __ps) __THROW;
extern size_t __wcsrtombs __P ((char *__restrict __dst, extern size_t __wcsrtombs (char *__restrict __dst,
__const wchar_t **__restrict __src, __const wchar_t **__restrict __src,
size_t __len, __mbstate_t *__restrict __ps)); size_t __len, __mbstate_t *__restrict __ps) __THROW;
extern size_t __mbsnrtowcs __P ((wchar_t *__restrict __dst, extern size_t __mbsnrtowcs (wchar_t *__restrict __dst,
__const char **__restrict __src, size_t __nmc, __const char **__restrict __src, size_t __nmc,
size_t __len, __mbstate_t *__restrict __ps)); size_t __len, __mbstate_t *__restrict __ps) __THROW;
extern size_t __wcsnrtombs __P ((char *__restrict __dst, extern size_t __wcsnrtombs (char *__restrict __dst,
__const wchar_t **__restrict __src, __const wchar_t **__restrict __src,
size_t __nwc, size_t __len, size_t __nwc, size_t __len,
__mbstate_t *__restrict __ps)); __mbstate_t *__restrict __ps) __THROW;
extern wchar_t *__wcpcpy __P ((wchar_t *__dest, __const wchar_t *__src)); extern wchar_t *__wcpcpy (wchar_t *__dest, __const wchar_t *__src) __THROW;
extern wchar_t *__wcpncpy __P ((wchar_t *__dest, __const wchar_t *__src, extern wchar_t *__wcpncpy (wchar_t *__dest, __const wchar_t *__src,
size_t __n)); size_t __n) __THROW;
extern wchar_t *__wmemcpy __P ((wchar_t *__s1, __const wchar_t *s2, extern wchar_t *__wmemcpy (wchar_t *__s1, __const wchar_t *s2,
size_t __n)); size_t __n) __THROW;
extern wchar_t *__wmempcpy __P ((wchar_t *__restrict __s1, extern wchar_t *__wmempcpy (wchar_t *__restrict __s1,
__const wchar_t *__restrict __s2, __const wchar_t *__restrict __s2,
size_t __n)); size_t __n) __THROW;
extern wchar_t *__wmemmove __P ((wchar_t *__s1, __const wchar_t *__s2, extern wchar_t *__wmemmove (wchar_t *__s1, __const wchar_t *__s2,
size_t __n)); size_t __n) __THROW;
extern wchar_t *__wcschrnul __P ((__const wchar_t *__s, wchar_t __wc)); extern wchar_t *__wcschrnul (__const wchar_t *__s, wchar_t __wc) __THROW;
extern int __vfwscanf __P ((FILE *__restrict __s, extern int __vfwscanf (FILE *__restrict __s,
__const wchar_t *__restrict __format, __const wchar_t *__restrict __format,
__gnuc_va_list __arg)) __gnuc_va_list __arg) __THROW
/* __attribute__ ((__format__ (__wscanf__, 2, 0))) */; /* __attribute__ ((__format__ (__wscanf__, 2, 0) __THROW) */;
# endif # endif
#endif #endif

View File

@ -2,6 +2,6 @@
#include <wctype/wctype.h> #include <wctype/wctype.h>
extern int __iswspace __P ((wint_t __wc)); extern int __iswspace (wint_t __wc);
#endif #endif

View File

@ -33,7 +33,7 @@ use vars qw (%ulps %failures);
use vars qw (%beautify); use vars qw (%beautify);
use vars qw ($output_dir $ulps_file); use vars qw ($output_dir $ulps_file);
%beautify = %beautify =
( "minus_zero" => "-0", ( "minus_zero" => "-0",
"plus_zero" => "+0", "plus_zero" => "+0",
"minus_infty" => "-inf", "minus_infty" => "-inf",
@ -97,7 +97,7 @@ $count = 0;
&parse_ulps ($ulps_file); &parse_ulps ($ulps_file);
&generate_testfile ($input, $output); &generate_testfile ($input, $output);
&output_ulps ("${output_dir}libm-test-ulps.h"); &output_ulps ("${output_dir}libm-test-ulps.h", $ulps_file);
&print_ulps_file ("${output_dir}NewUlps") if ($opt_n); &print_ulps_file ("${output_dir}NewUlps") if ($opt_n);
# Return a nicer representation # Return a nicer representation
@ -142,8 +142,8 @@ sub build_complex_beautify {
sub get_variable { sub get_variable {
my ($number) = @_; my ($number) = @_;
return "x" if ($number == 1); return "x" if ($number == 1);
return "y" if ($number == 2); return "y" if ($number == 2);
return "z" if ($number == 3); return "z" if ($number == 3);
# return x1,x2,... # return x1,x2,...
$number =-3; $number =-3;
@ -186,7 +186,7 @@ sub special_functions {
my (@args, $str, $test, $cline); my (@args, $str, $test, $cline);
@args = split /,\s*/, $args; @args = split /,\s*/, $args;
unless ($args[0] =~ /sincos/) { unless ($args[0] =~ /sincos/) {
die ("Don't know how to handle $args[0] extra."); die ("Don't know how to handle $args[0] extra.");
} }
@ -202,7 +202,7 @@ sub special_functions {
$cline = " check_float (\"$test\", sin_res, $args[2]"; $cline = " check_float (\"$test\", sin_res, $args[2]";
$cline .= &new_test ($test, $args[4]); $cline .= &new_test ($test, $args[4]);
print $file $cline; print $file $cline;
# handle cos # handle cos
$test = $str . ' puts ' . &beautify ($args[3]) . ' in cos_res'; $test = $str . ' puts ' . &beautify ($args[3]) . ' in cos_res';
$cline = " check_float (\"$test\", cos_res, $args[3]"; $cline = " check_float (\"$test\", cos_res, $args[3]";
@ -261,7 +261,7 @@ sub parse_args {
$call .= ')'; $call .= ')';
$str = "$call == "; $str = "$call == ";
# Result # Result
@descr = split //,$descr_res; @descr = split //,$descr_res;
foreach (@descr) { foreach (@descr) {
if ($_ =~ /f|i|l|L/) { if ($_ =~ /f|i|l|L/) {
@ -382,7 +382,7 @@ sub parse_args {
my ($str) = "$call sets x to $special[0]"; my ($str) = "$call sets x to $special[0]";
$post = " check_float (\"$str\", x, $special[0]"; $post = " check_float (\"$str\", x, $special[0]";
$post .= &new_test ($str, undef); $post .= &new_test ($str, undef);
} }
} elsif ($args[0] eq 'remquo') { } elsif ($args[0] eq 'remquo') {
if (defined $special[0] && $special[0] ne "IGNORE") { if (defined $special[0] && $special[0] ne "IGNORE") {
my ($str) = "$call sets x to $special[0]"; my ($str) = "$call sets x to $special[0]";
@ -390,7 +390,7 @@ sub parse_args {
$post .= &new_test ($str, undef); $post .= &new_test ($str, undef);
} }
} }
print $file $pre if (defined $pre); print $file $pre if (defined $pre);
print $file " $cline\n"; print $file " $cline\n";
@ -500,7 +500,7 @@ sub print_ulps {
# Clean up a floating point number # Clean up a floating point number
sub clean_up_number { sub clean_up_number {
my ($number) = @_; my ($number) = @_;
# Remove trailing zeros # Remove trailing zeros
$number =~ s/0+$//; $number =~ s/0+$//;
$number =~ s/\.$//; $number =~ s/\.$//;
@ -586,21 +586,23 @@ sub output_test {
# Print include file # Print include file
sub output_ulps { sub output_ulps {
my ($file) = @_; my ($file, $ulps_filename) = @_;
my ($i, $fct); my ($i, $fct);
open ULP, ">$file" or die ("Can't open $file: $!"); open ULP, ">$file" or die ("Can't open $file: $!");
print ULP "/* This file is automatically generated.\n"; print ULP "/* This file is automatically generated\n";
print ULP " from $ulps_filename with gen-libm-test.pl.\n";
print ULP " Don't change it - change instead the master files. */\n\n"; print ULP " Don't change it - change instead the master files. */\n\n";
print ULP "\n/* Maximal error of functions. */\n";
foreach $fct (@functions) { foreach $fct (@functions) {
output_test (\*ULP, $fct, $fct); output_test (\*ULP, $fct, $fct);
} }
print ULP "\n/* Error of single function calls. */\n";
for ($i = 0; $i < $count; $i++) { for ($i = 0; $i < $count; $i++) {
output_test (\*ULP, $tests[$i], $i); output_test (\*ULP, $tests[$i], $i);
} }
close ULP; close ULP;
} }

View File

@ -2969,7 +2969,7 @@ nextafter_test (void)
END (nextafter); END (nextafter);
} }
#if 0
static void static void
nexttoward_test (void) nexttoward_test (void)
{ {
@ -2993,7 +2993,6 @@ nexttoward_test (void)
END (nexttoward); END (nexttoward);
} }
#endif
static void static void
@ -3706,7 +3705,7 @@ static const struct argp_option options[] =
static const char doc[] = "Math test suite: " TEST_MSG ; static const char doc[] = "Math test suite: " TEST_MSG ;
/* Prototype for option handler. */ /* Prototype for option handler. */
static error_t parse_opt __P ((int key, char *arg, struct argp_state *state)); static error_t parse_opt (int key, char *arg, struct argp_state *state);
/* Data structure to communicate with argp functions. */ /* Data structure to communicate with argp functions. */
static struct argp argp = static struct argp argp =
@ -3884,7 +3883,7 @@ main (int argc, char **argv)
/* Manipulation functions: */ /* Manipulation functions: */
copysign_test (); copysign_test ();
nextafter_test (); nextafter_test ();
// nexttoward_test (); nexttoward_test ();
/* maximum, minimum and positive difference functions */ /* maximum, minimum and positive difference functions */
fdim_test (); fdim_test ();