diff options
author | Dan McGee <dan@archlinux.org> | 2010-11-17 03:13:37 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-12-13 03:29:30 +0100 |
commit | f0051a7678d138ffc88a4c9c6d9add8966abe4f9 (patch) | |
tree | 377276a432449c72d74d18501dcc36a5abaadc11 /src | |
parent | fc74ef93b6945dfac299433a9418fdd31798f6b6 (diff) | |
download | pacman-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 'src')
-rw-r--r-- | src/pacman/pacman.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 5ba798b4..4239667e 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -305,7 +305,7 @@ static ssize_t xwrite(int fd, const void *buf, size_t count) * in a consistant state. * @param signum the thrown signal */ -static RETSIGTYPE handler(int signum) +static void handler(int signum) { int out = fileno(stdout); int err = fileno(stderr); |