diff options
| author | Russ Cox <rsc@golang.org> | 2010-10-18 13:01:10 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2010-10-18 13:01:10 -0400 |
| commit | 9cc8e9ef48d17bd7e8bb2c1c41406f51366a7925 (patch) | |
| tree | 22897c9ac9f5c705b9cadeb78ab517f4435e2e64 /src/pkg/runtime/runtime.c | |
| parent | 99a10eff16b79cfb8ccf36e586532a40b17a203c (diff) | |
| download | go-9cc8e9ef48d17bd7e8bb2c1c41406f51366a7925.tar.xz | |
runtime: fix amd64 build (broke by 386 support for Plan 9)
TBR=r
CC=golang-dev
https://golang.org/cl/2556041
Diffstat (limited to 'src/pkg/runtime/runtime.c')
| -rw-r--r-- | src/pkg/runtime/runtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/runtime.c b/src/pkg/runtime/runtime.c index a8f8177331..9b874cec8d 100644 --- a/src/pkg/runtime/runtime.c +++ b/src/pkg/runtime/runtime.c @@ -147,7 +147,7 @@ args(int32 c, uint8 **v) argv = v; } -extern int32 isplan9; +int32 isplan9; void goargs(void) |
