diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-10-25 20:18:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-10-25 20:18:27 +0000 |
commit | a9b5d2eeb1b525235f0137280e1ab73851dae6fe (patch) | |
tree | db1d76ae730bec18d888cea5c017cf257912d584 /linuxthreads/weaks.c | |
parent | 3a8e65a0a7914ad670774161c8e0bc781e09500a (diff) | |
download | glibc-a9b5d2eeb1b525235f0137280e1ab73851dae6fe.tar.gz glibc-a9b5d2eeb1b525235f0137280e1ab73851dae6fe.tar.xz glibc-a9b5d2eeb1b525235f0137280e1ab73851dae6fe.zip |
Update.
1999-10-25 Thorsten Kukuk <kukuk@suse.de> * md5-crypt/md5.h: Remove prototypes for public interface. md5 is used only internal. * md5-crypt/md5-crypt.c: Use internal names for md5 functions, remove weak alias for public names. * md5-crypt/md5.c: Remove weak aliase. 1999-10-25 Andreas Jaeger <aj@suse.de> * math/README.libm-test: New file, documents libm-test.inc. 1999-10-25 Andreas Jaeger <aj@suse.de> * math/gen-libm-test.pl: Only generate a new ulps file when -n is given. (print_ulps_file): Fix loops to not read @tests and @functions since those are not initialized with -n now. (parse_ulps): Set $results{..}{"kind"}.
Diffstat (limited to 'linuxthreads/weaks.c')
-rw-r--r-- | linuxthreads/weaks.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linuxthreads/weaks.c b/linuxthreads/weaks.c index 0ce058bb5c..d142b3d7b1 100644 --- a/linuxthreads/weaks.c +++ b/linuxthreads/weaks.c @@ -21,9 +21,9 @@ #include <limits.h> #include <stdlib.h> -extern int __pthread_return_0 __P ((void)); -extern int __pthread_return_1 __P ((void)); -extern void __pthread_return_void __P ((void)); +extern int __pthread_return_0 (void) __THROW; +extern int __pthread_return_1 (void) __THROW; +extern void __pthread_return_void (void) __THROW; /* Those are pthread functions which return 0 if successful. */ #if defined HAVE_ELF && defined PIC && defined DO_VERSIONING |