Commit 5cc98723 5cc987236e15a413f5f78bf854ecc02be2548242 by Sergey Poznyakoff

Use __attribute__ instead of ARG_UNUSED

1 parent 7dbec67b
......@@ -92,8 +92,12 @@
#define MAXFD 64
#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
# define __attribute__(x)
#endif
void
waitdaemon_timeout (int signo ARG_UNUSED)
waitdaemon_timeout (int signo __attribute__ ((__unused__)))
{
int left;
......