summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-11-17 03:13:37 +0100
committerDan McGee <dan@archlinux.org>2010-12-13 03:29:30 +0100
commitf0051a7678d138ffc88a4c9c6d9add8966abe4f9 (patch)
tree377276a432449c72d74d18501dcc36a5abaadc11 /lib
parentfc74ef93b6945dfac299433a9418fdd31798f6b6 (diff)
downloadpacman-f0051a7678d138ffc88a4c9c6d9add8966abe4f9.tar.gz
pacman-f0051a7678d138ffc88a4c9c6d9add8966abe4f9.tar.xz
Remove AC_TYPE_SIGNAL usage
This macro is deemed unnecessary by even the autoconf guys, so we really don't need to use it. Signed-off-by: Dan McGee <dan@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/libalpm/dload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/dload.c b/lib/libalpm/dload.c
index 9b59f520..1cb24e61 100644
--- a/lib/libalpm/dload.c
+++ b/lib/libalpm/dload.c
@@ -89,7 +89,7 @@ static const char *gethost(struct url *fileurl)
}
int dload_interrupted;
-static RETSIGTYPE inthandler(int signum)
+static void inthandler(int signum)
{
dload_interrupted = 1;
}