From 059c7ba996c66e5782c8dbafa3f72858f880bd97 Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Tue, 29 Jun 2010 07:12:14 -0700 Subject: [PATCH] runtime: fix windows build R=golang-dev, iant CC=golang-dev https://golang.org/cl/1747041 --- src/pkg/runtime/windows/386/signal.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pkg/runtime/windows/386/signal.c b/src/pkg/runtime/windows/386/signal.c index 663ed874bd..278bb7fc4c 100644 --- a/src/pkg/runtime/windows/386/signal.c +++ b/src/pkg/runtime/windows/386/signal.c @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +#include "runtime.h" + void initsig(int32 queue) { -- 2.48.1