Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
5cc98723
...
5cc987236e15a413f5f78bf854ecc02be2548242
authored
2007-06-28 17:14:58 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Use __attribute__ instead of ARG_UNUSED
1 parent
7dbec67b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
lib/daemon.c
lib/daemon.c
View file @
5cc9872
...
...
@@ -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
;
...
...
Please
register
or
sign in
to post a comment