There is strong reason to believe that gcc 4 will also support

__attribute__((__nonnull__(x)), assume it so.
This commit is contained in:
Warner Losh 2003-07-22 23:14:32 +00:00
parent cd51b9abed
commit bf633cafdf

View File

@ -143,7 +143,7 @@
#endif
#endif
#if __GNUC__ == 3 && __GNUC_MINOR__ >= 3
#if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ >= 4
#define __nonnull(x) __attribute__((__nonnull__(x)))
#else
#define __nonnull(x)