diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-06-12 18:29:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-06-12 18:29:52 +0000 |
commit | 66b110e855159d415b5106ade7fa5bf17c14f108 (patch) | |
tree | 0274cefb5c078cdf16b0b936d5ace089a724faaa /argp/argp.h | |
parent | 3bbbaea9745d5daa8662feb68f743c7eb2aa80ea (diff) | |
download | glibc-66b110e855159d415b5106ade7fa5bf17c14f108.tar.gz glibc-66b110e855159d415b5106ade7fa5bf17c14f108.tar.xz glibc-66b110e855159d415b5106ade7fa5bf17c14f108.zip |
Update.
2003-06-12 H.J. Lu <hongjiu.lu@intel.com> * posix/transbug.c (run_test): Return 1 for failure. (do_test): Compare only if run_test is successful. 2003-06-12 Simon Josefsson <jas@extundo.com> * argp/argp.h [!__THROW]: Define if undefined. * posix/transbug.c: New file. * inet/Makefile (aux): Add check_pf. * include/ifaddrs.h: Add prototype for __check_pf. * sysdeps/generic/check_pf.c: New file. * sysdeps/unix/sysv/linux/check_pf.c: New file.
Diffstat (limited to 'argp/argp.h')
-rw-r--r-- | argp/argp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/argp/argp.h b/argp/argp.h index 04b4e92806..564db5515a 100644 --- a/argp/argp.h +++ b/argp/argp.h @@ -32,6 +32,10 @@ # define __const const #endif +#ifndef __THROW +# define __THROW +#endif + #ifndef __error_t_defined typedef int error_t; # define __error_t_defined |