diff options
Diffstat (limited to 'src/rc')
-rw-r--r-- | src/rc/_usage.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rc/_usage.c b/src/rc/_usage.c index 6dcb63aa..5be2bcb3 100644 --- a/src/rc/_usage.c +++ b/src/rc/_usage.c @@ -27,8 +27,10 @@ #if lint # define _noreturn #endif -#if __GNUC__ > 2 || defined(__INTEL_COMPILER) || defined(__PCC__) +#if __GNUC__ > 2 || defined(__INTEL_COMPILER) # define _noreturn __attribute__ ((__noreturn__)) +#else +# define _noreturn #endif _noreturn static void usage (int exit_status) |