Commit 4360ef8d authored by Shenghou Ma's avatar Shenghou Ma

lib9: fix build for windows

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/7311044
parent da35d425
......@@ -30,7 +30,8 @@ THE SOFTWARE.
#ifdef WIN32
#include <windows.h>
static void crashhandler() {
static void crashhandler(int sig) {
USED(sig);
fprint(2, "%s: internal fatal error.\n", argv0);
exit(1);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment