diff options
author | Roy Marples <roy@marples.name> | 2008-02-22 11:44:10 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-02-22 11:44:10 +0000 |
commit | a9fcbf3e30952809381a62143248517c0f0c2c6d (patch) | |
tree | ebe8362c817a6255c2f33ccfdc0f20a3e6663f4e /src/rc/_usage.c | |
parent | 5bb09b65871362f60b7facd6193638caeba31a49 (diff) |
More PCC fixes.
Diffstat (limited to 'src/rc/_usage.c')
-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) |