From f54d61061cd903fdfdaa94ace66d53f0362db032 Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Thu, 7 Jun 2012 09:37:05 +1000 Subject: [PATCH] runtime: include "typekind.h" to fix windows build R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6305059 --- src/pkg/runtime/callback_windows_386.c | 1 + src/pkg/runtime/callback_windows_amd64.c | 1 + 2 files changed, 2 insertions(+) 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"