1
0
mirror of https://github.com/golang/go synced 2024-09-25 01:20:13 -06:00

runtime/cgo: include <signal.h> to fix build

R=golang-codereviews
TBR=dfc
CC=golang-codereviews
https://golang.org/cl/43120044
This commit is contained in:
Ian Lance Taylor 2013-12-24 08:24:32 -08:00
parent 699dbb60b7
commit 59583b09f3
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@
#include <sys/types.h>
#include <machine/sysarch.h>
#include <pthread.h>
#include <signal.h>
#include <string.h>
#include "libcgo.h"

View File

@ -4,6 +4,7 @@
#include <pthread.h>
#include <string.h>
#include <signal.h>
#include "libcgo.h"
static void *threadentry(void*);