diff options
author | Andreas Schneider <asn@redhat.com> | 2010-02-19 11:27:56 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-02-23 12:23:45 +0100 |
commit | 13e2f5f971eeaa7b342baeaee55ff52b089ac881 (patch) | |
tree | 9a829bef3bb7f529c95bbcb61c663f60a10e04dd /lib/replace/system | |
parent | 8ac0c9fc67c8c07d0680cb069677f58434dc893e (diff) | |
download | samba-13e2f5f971eeaa7b342baeaee55ff52b089ac881.tar.gz samba-13e2f5f971eeaa7b342baeaee55ff52b089ac881.tar.bz2 samba-13e2f5f971eeaa7b342baeaee55ff52b089ac881.zip |
libreplace: Remove the obsolete signal type cast.
AC_SIGNAL_TYPE is already obsolete in autoconf. C89 requires signal
handlers to return void, only K&R returned int.
Diffstat (limited to 'lib/replace/system')
-rw-r--r-- | lib/replace/system/wait.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/replace/system/wait.h b/lib/replace/system/wait.h index 79583ad2ab..41db1806a5 100644 --- a/lib/replace/system/wait.h +++ b/lib/replace/system/wait.h @@ -36,10 +36,6 @@ #define SIGCLD SIGCHLD #endif -#ifndef SIGNAL_CAST -#define SIGNAL_CAST (RETSIGTYPE (*)(int)) -#endif - #ifdef HAVE_SETJMP_H #include <setjmp.h> #endif |