From: Alex Brainman Date: Wed, 6 Jun 2012 23:37:05 +0000 (+1000) Subject: runtime: include "typekind.h" to fix windows build X-Git-Tag: go1.1rc2~2973 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f54d61061cd903fdfdaa94ace66d53f0362db032;p=gostls13.git runtime: include "typekind.h" to fix windows build R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6305059 --- diff --git a/src/pkg/runtime/callback_windows_386.c b/src/pkg/runtime/callback_windows_386.c index fcd292fbcd..97df7c242f 100644 --- a/src/pkg/runtime/callback_windows_386.c +++ b/src/pkg/runtime/callback_windows_386.c @@ -4,6 +4,7 @@ #include "runtime.h" #include "type.h" +#include "typekind.h" #include "defs_GOOS_GOARCH.h" #include "os_GOOS.h" diff --git a/src/pkg/runtime/callback_windows_amd64.c b/src/pkg/runtime/callback_windows_amd64.c index 99d7cb9e38..0a2e53e6f5 100644 --- a/src/pkg/runtime/callback_windows_amd64.c +++ b/src/pkg/runtime/callback_windows_amd64.c @@ -4,6 +4,7 @@ #include "runtime.h" #include "type.h" +#include "typekind.h" #include "defs_GOOS_GOARCH.h" #include "os_GOOS.h"