diff options
author | Eric Anholt <eric@anholt.net> | 2007-09-12 13:23:13 +0000 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2007-09-12 13:23:13 +0000 |
commit | 6da39c67905500ab2db00a45cda4a9f756cdde96 (patch) | |
tree | 8fe3a5ab8e44b4c939bce393b19ed79fb201ba76 | |
parent | 257c8ed17f4f908e0d0d5e53aaf13aa3b1313f50 (diff) |
Fix build on FreeBSD after Popen changes.
-rw-r--r-- | os/utils.c | 2 |
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) |