diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-12-03 20:46:56 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-12-03 20:46:56 +0000 |
commit | 9789f119cdb67c6405c101f5e2a001f3e50fdd49 (patch) | |
tree | a71ad68a1d5a2f502d11d8e4408cc67c09eeefcd /isys | |
parent | 8516e6b2e8b7c886440db830e40ccad40977da1d (diff) | |
download | anaconda-9789f119cdb67c6405c101f5e2a001f3e50fdd49.tar.gz anaconda-9789f119cdb67c6405c101f5e2a001f3e50fdd49.tar.xz anaconda-9789f119cdb67c6405c101f5e2a001f3e50fdd49.zip |
commit bero's fix for gcc3
Diffstat (limited to 'isys')
-rw-r--r-- | isys/sundries.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/sundries.h b/isys/sundries.h index cad87a1c8..1fc36c40e 100644 --- a/isys/sundries.h +++ b/isys/sundries.h @@ -48,7 +48,7 @@ char *xstrconcat4 (const char *, const char *, const char *, const char *); /* Here is some serious cruft. */ #ifdef __GNUC__ -#if defined(__GNUC_MINOR__) && __GNUC__ == 2 && __GNUC_MINOR__ >= 5 +#if __GNUC__ > 2 || (defined(__GNUC_MINOR__) && __GNUC__ == 2 && __GNUC_MINOR__ >= 5) void die (int errcode, const char *fmt, ...) __attribute__ ((noreturn)); #else /* GNUC < 2.5 */ void volatile die (int errcode, const char *fmt, ...); |