Commit 5cc98723 5cc987236e15a413f5f78bf854ecc02be2548242 by Sergey Poznyakoff

Use __attribute__ instead of ARG_UNUSED

1 parent 7dbec67b
...@@ -92,8 +92,12 @@ ...@@ -92,8 +92,12 @@
92 92
93 #define MAXFD 64 93 #define MAXFD 64
94 94
95 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
96 # define __attribute__(x)
97 #endif
98
95 void 99 void
96 waitdaemon_timeout (int signo ARG_UNUSED) 100 waitdaemon_timeout (int signo __attribute__ ((__unused__)))
97 { 101 {
98 int left; 102 int left;
99 103
......