diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-05-18 08:37:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-05-18 08:37:39 +0000 |
commit | 05cc5bd9dca91dfad3eec076b1bfdfef868f0987 (patch) | |
tree | 4a8942bb0c29d63c99e0848686f89c7e23b3de9a /misc/sys/cdefs.h | |
parent | 73334e85faf2faf44479c4e5d8367d07cca7059f (diff) | |
download | glibc-05cc5bd9dca91dfad3eec076b1bfdfef868f0987.tar.gz glibc-05cc5bd9dca91dfad3eec076b1bfdfef868f0987.tar.xz glibc-05cc5bd9dca91dfad3eec076b1bfdfef868f0987.zip |
Update.
1999-05-04 Zack Weinberg <zack@rabi.phys.columbia.edu> * argp/argp.h, assert/assert.h, misc/sys/cdefs.h, posix/sys/types.h: Handle the case of __GNUC__=3, __GNUC_MINOR__=(anything).
Diffstat (limited to 'misc/sys/cdefs.h')
-rw-r--r-- | misc/sys/cdefs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h index bc8d7c5cdb..6d4bc62e14 100644 --- a/misc/sys/cdefs.h +++ b/misc/sys/cdefs.h @@ -33,7 +33,7 @@ /* GCC can always grok prototypes. For C++ programs we add throw() to help it optimize the function calls. But this works only with gcc 2.8.x and egcs. */ -# if defined __cplusplus && __GNUC_MINOR__ >= 8 +# if defined __cplusplus && (__GNUC__ >= 3 || __GNUC_MINOR__ >= 8) # define __THROW throw () # else # define __THROW |