aboutsummaryrefslogtreecommitdiff
path: root/src/lib9/sysfatal.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2003-10-01 02:50:57 +0000
committerrsc <devnull@localhost>2003-10-01 02:50:57 +0000
commita995e477ffb4dd1184da87e9e46a9e57f3178c63 (patch)
tree5b2260becdfb1aaf8b67fd91223b7d214b7e9451 /src/lib9/sysfatal.c
parente182749a982e415fba755bc1035c35da5c4fe606 (diff)
downloadplan9port-a995e477ffb4dd1184da87e9e46a9e57f3178c63.tar.gz
plan9port-a995e477ffb4dd1184da87e9e46a9e57f3178c63.tar.bz2
plan9port-a995e477ffb4dd1184da87e9e46a9e57f3178c63.zip
Various tweaks to make things run on Mac OS.
The main change is the use of pthread to implement ffork.
Diffstat (limited to 'src/lib9/sysfatal.c')
-rw-r--r--src/lib9/sysfatal.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib9/sysfatal.c b/src/lib9/sysfatal.c
index f9ab6985..33a533b8 100644
--- a/src/lib9/sysfatal.c
+++ b/src/lib9/sysfatal.c
@@ -14,6 +14,7 @@ sysfatal(char *fmt, ...)
vseprint(buf, buf+sizeof buf, fmt, arg);
va_end(arg);
+ __fixargv0();
fprint(2, "%s; %s\n", argv0 ? argv0 : "<prog>", buf);
exits("fatal");
}