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
This commit is contained in:
Tonis Tiigi 2020-12-06 11:56:38 -08:00
parent 3b2a578166
commit 0fa4162f1c
1 changed files with 1 additions and 1 deletions

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"