summaryrefslogtreecommitdiff
path: root/src/rc/_usage.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-02-22 11:44:10 +0000
committerRoy Marples <roy@marples.name>2008-02-22 11:44:10 +0000
commita9fcbf3e30952809381a62143248517c0f0c2c6d (patch)
treeebe8362c817a6255c2f33ccfdc0f20a3e6663f4e /src/rc/_usage.c
parent5bb09b65871362f60b7facd6193638caeba31a49 (diff)
downloadopenrc-a9fcbf3e30952809381a62143248517c0f0c2c6d.tar.gz
openrc-a9fcbf3e30952809381a62143248517c0f0c2c6d.tar.bz2
openrc-a9fcbf3e30952809381a62143248517c0f0c2c6d.tar.xz
More PCC fixes.
Diffstat (limited to 'src/rc/_usage.c')
-rw-r--r--src/rc/_usage.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rc/_usage.c b/src/rc/_usage.c
index 6dcb63a..5be2bcb 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)