Fix the test for GCC >= 2.7. This fixes a problem compiling on S390,
apparently. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@9 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
@@ -98,7 +98,7 @@
|
||||
# define __N
|
||||
# define __inline__
|
||||
#else
|
||||
# if (__GNUC__ >= 2) && (__GNUC_MINOR__ >= 7)
|
||||
# if (__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 7))
|
||||
# define __A(x) __attribute__ ((format (printf, x, x + 1)))
|
||||
# define __N __attribute__ ((noreturn))
|
||||
# else
|
||||
|
||||
Reference in New Issue
Block a user