diff options
author | DJ Delorie <dj@redhat.com> | 2004-09-05 06:04:05 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2004-09-05 06:04:05 +0000 |
commit | c558f8950eb2bacaadf2c7a218797d85aa6d6b53 (patch) | |
tree | 4151fd79c9de11a2917a17a40d08843d6219e953 /include/ansidecl.h | |
parent | 0a7a5cb71d963eb1fb86a92092fea20a1bf75788 (diff) | |
download | newlib-c558f8950eb2bacaadf2c7a218797d85aa6d6b53.zip newlib-c558f8950eb2bacaadf2c7a218797d85aa6d6b53.tar.gz newlib-c558f8950eb2bacaadf2c7a218797d85aa6d6b53.tar.bz2 |
merge from gcc
Diffstat (limited to 'include/ansidecl.h')
-rw-r--r-- | include/ansidecl.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/ansidecl.h b/include/ansidecl.h index ccf0b27..04c3a30 100644 --- a/include/ansidecl.h +++ b/include/ansidecl.h @@ -322,6 +322,15 @@ So instead we use the macro below and test it against specific values. */ # define ATTRIBUTE_NULL_PRINTF_5 ATTRIBUTE_NULL_PRINTF(5, 6) #endif /* ATTRIBUTE_NULL_PRINTF */ +/* Attribute `sentinel' was valid as of gcc 3.5. */ +#ifndef ATTRIBUTE_SENTINEL +# if (GCC_VERSION >= 3005) +# define ATTRIBUTE_SENTINEL __attribute__ ((__sentinel__)) +# else +# define ATTRIBUTE_SENTINEL +# endif /* GNUC >= 3.5 */ +#endif /* ATTRIBUTE_SENTINEL */ + /* We use __extension__ in some places to suppress -pedantic warnings about GCC extensions. This feature didn't work properly before gcc 2.8. */ |