Fix build error with LDC 1.28.1 on Alpine (#2220)

* Fix build error with LDC 1.28.1 on Alpine due to MUSL being used as libc, due to the update of cgi.d performed with #2219
This commit is contained in:
abraunegg 2022-11-16 08:59:19 +11:00 committed by GitHub
parent c35ff20f5b
commit 12d54db1e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6681,8 +6681,8 @@ version(Windows)
}
version(Posix) {
import core.sys.posix.unistd;
version(CRuntime_Musl) {} else {
import core.sys.posix.unistd;
private extern(C) int posix_spawn(pid_t*, const char*, void*, void*, const char**, const char**);
}
}