summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-02-20 17:49:51 +0000
committerRoy Marples <roy@marples.name>2008-02-20 17:49:51 +0000
commit8c43c8baa57b46686bb6a6a66f15a2f597c0181a (patch)
treee31357b008900090e34efd1be165f440fe90b27a /common.h
parent4e0e64a9d9096ea715218d464b5a6cd692e71571 (diff)
downloaddhcpcd-8c43c8baa57b46686bb6a6a66f15a2f597c0181a.tar.xz
Support the PCC compiler.
Diffstat (limited to 'common.h')
-rw-r--r--common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.h b/common.h
index 0a59a75a..c9f8180b 100644
--- a/common.h
+++ b/common.h
@@ -33,7 +33,7 @@
#include <stdio.h>
#include <string.h>
-#if __GNUC__ > 2 || defined(__INTEL_COMPILER)
+#if __GNUC__ > 2 || defined(__INTEL_COMPILER) || defined(__PCC__)
# define _unused __attribute__((__unused__))
#endif