summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2007-09-12 13:23:13 +0000
committerDonnie Berkholz <dberkholz@gentoo.org>2008-05-06 20:55:19 -0700
commita02b989c68864a7388553fb96e4fbaf91f941c4a (patch)
tree0556a7aba883c6e6c4955996765cc893a1f82fec
parent6a5066c2e9e872d4ef85ec70745c34d93580177e (diff)
Fix build on FreeBSD after Popen changes.
-rw-r--r--os/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/utils.c b/os/utils.c
index afcaae41b..144098b37 100644
--- a/os/utils.c
+++ b/os/utils.c
@@ -1720,7 +1720,7 @@ static struct pid {
int pid;
} *pidlist;
-static sighandler_t old_alarm = NULL; /* XXX horrible awful hack */
+void (*old_alarm)(int) = NULL; /* XXX horrible awful hack */
pointer
Popen(char *command, char *type)