summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMukund Sivaraman <muks@banu.com>2009-09-20 14:03:56 +0530
committerMukund Sivaraman <muks@banu.com>2009-09-20 14:03:56 +0530
commit73409c9fe14646d26893c7b6173cb973fb819372 (patch)
treecb19dfc384b9b35611a2c3462d2213d4ac102db7 /src
parent919eedc7f9c2e702162647ae79e6db079f98e981 (diff)
downloadtinyproxy-73409c9fe14646d26893c7b6173cb973fb819372.tar.gz
tinyproxy-73409c9fe14646d26893c7b6173cb973fb819372.zip
build: Remove use of the obsolete AC_TYPE_SIGNAL macro
C89 compilers use void return type for signal handler functions.
Diffstat (limited to '')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index c5d080f..8f2c185 100644
--- a/src/main.c
+++ b/src/main.c
@@ -51,7 +51,7 @@ unsigned int processed_config_file = FALSE; /* boolean */
/*
* Handle a signal
*/
-static RETSIGTYPE
+static void
takesig (int sig)
{
pid_t pid;