1
0
mirror of https://github.com/golang/go synced 2024-11-26 02:07:57 -07:00

runtime/cgo: fix building on musl

sys/unistd.h only exists in glibc and not in musl so use the standard
location. This is a regression from CL 210639

Change-Id: Idd4c75510d9829316b44300c36c34df6d667cc05
GitHub-Last-Rev: 0fa4162f1c
GitHub-Pull-Request: golang/go#43038
Reviewed-on: https://go-review.googlesource.com/c/go/+/275732
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Andrew G. Morgan <agm@google.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Filippo Valsorda <filippo@golang.org>
This commit is contained in:
Tonis Tiigi 2020-12-06 20:13:47 +00:00 committed by Ian Lance Taylor
parent 8d34585171
commit 50cdb2d8e9

View File

@ -10,7 +10,7 @@
#include <grp.h>
#include <sys/types.h>
#include <sys/unistd.h>
#include <unistd.h>
#include <errno.h>
#include "libcgo.h"