diff options
author | Jose Fonseca <[email protected]> | 2015-12-01 23:07:08 +0000 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2015-12-02 07:51:04 +0000 |
commit | 56aff6bb4eafe35ba301f5d60027377abc4cfd9f (patch) | |
tree | ab4fb5d62248754462ebfc00e0197b66bec11817 /include | |
parent | 51564f04b77e6d29a888a4fbd83d96de062ac634 (diff) |
Remove Sun CC specific code.
Reviewed-by: Matt Turner <[email protected]>
Acked-by: Alan Coopersmith <[email protected]>
Diffstat (limited to 'include')
-rw-r--r-- | include/c99_compat.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/c99_compat.h b/include/c99_compat.h index 4fc91bc1357..4be5b7e1259 100644 --- a/include/c99_compat.h +++ b/include/c99_compat.h @@ -81,8 +81,6 @@ /* Intel compiler supports inline keyword */ # elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100) # define inline __inline -# elif defined(__SUNPRO_C) && defined(__C99FEATURES__) - /* C99 supports inline keyword */ # elif (__STDC_VERSION__ >= 199901L) /* C99 supports inline keyword */ # else @@ -100,8 +98,6 @@ #ifndef restrict # if (__STDC_VERSION__ >= 199901L) /* C99 */ -# elif defined(__SUNPRO_C) && defined(__C99FEATURES__) - /* C99 */ # elif defined(__GNUC__) # define restrict __restrict__ # elif defined(_MSC_VER) @@ -118,8 +114,6 @@ #ifndef __func__ # if (__STDC_VERSION__ >= 199901L) /* C99 */ -# elif defined(__SUNPRO_C) && defined(__C99FEATURES__) - /* C99 */ # elif defined(__GNUC__) # define __func__ __FUNCTION__ # elif defined(_MSC_VER) |