2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 22:35:10 +00:00

Remove use of RETSIGTYPE; all modern systems have signal handlers that

return void.
This commit is contained in:
Todd C. Miller
2010-05-21 18:40:04 -04:00
parent 51b558e753
commit 8ae8e8442c
3 changed files with 3 additions and 6 deletions

View File

@@ -52,6 +52,6 @@ void audit_failure(char **, char const * const, ...);
void log_allowed(int);
void log_denial(int, int);
void log_error(int flags, const char *fmt, ...) __printflike(2, 3);
RETSIGTYPE reapchild(int);
void reapchild(int);
#endif /* _LOGGING_H */