Commit e0dee496 authored by Dmitriy Vyukov's avatar Dmitriy Vyukov

cmd/gc: fix windows build

c:\src\go\pkg\obj\windows_amd64\libgc.a(lex.o): In function `catcher':
c:/src/go/src/cmd/gc/lex.c:181: undefined reference to `noted'

LGTM=0intro
R=0intro
CC=golang-codereviews
https://golang.org/cl/63270043
parent 86e3cb8d
...@@ -164,6 +164,7 @@ fault(int s) ...@@ -164,6 +164,7 @@ fault(int s)
fatal("fault"); fatal("fault");
} }
#ifdef PLAN9
void void
catcher(void *v, char *s) catcher(void *v, char *s)
{ {
...@@ -180,6 +181,7 @@ catcher(void *v, char *s) ...@@ -180,6 +181,7 @@ catcher(void *v, char *s)
} }
noted(NDFLT); noted(NDFLT);
} }
#endif
void void
doversion(void) doversion(void)
......
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