diff options
author | Roy Marples <roy@marples.name> | 2008-02-20 18:06:01 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-02-20 18:06:01 +0000 |
commit | 405cea1f19eb4de00805eeb6bddd36184e51b400 (patch) | |
tree | ac9b495c2999a5e508a1d3728f018dfc8d004dc6 /src/rc | |
parent | d3d22914fc4bede8b022da0c8d08c1eaf05225e6 (diff) |
Support the PCC compiler.
Diffstat (limited to 'src/rc')
-rw-r--r-- | src/rc/_usage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/_usage.c b/src/rc/_usage.c index 0e39271d..6dcb63aa 100644 --- a/src/rc/_usage.c +++ b/src/rc/_usage.c @@ -27,7 +27,7 @@ #if lint # define _noreturn #endif -#if __GNUC__ > 2 || defined(__INTEL_COMPILER) +#if __GNUC__ > 2 || defined(__INTEL_COMPILER) || defined(__PCC__) # define _noreturn __attribute__ ((__noreturn__)) #endif |