diff options
author | Mackenzie Clark <mackenzie.a.z.c@gmail.com> | 2018-12-16 16:23:53 -0800 |
---|---|---|
committer | Mackenzie Clark <mackenzie.a.z.c@gmail.com> | 2018-12-16 16:23:53 -0800 |
commit | 313483ba2ef5aa1f70a137952c696cf499e3f0e3 (patch) | |
tree | 4048de624fbc47b6f7201c025a6f8b749131b8e0 /libc-test/build.rs | |
parent | ed8309bc03ba32c9f407d1800ad6d51ade19cdb0 (diff) | |
download | rust-libc-313483ba2ef5aa1f70a137952c696cf499e3f0e3.tar.gz |
add signal and raise bindings
separate for gnu and msvc
scope resolve c_int
these types are not allowed, and more scope resolution
use size_t
Diffstat (limited to 'libc-test/build.rs')
-rw-r--r-- | libc-test/build.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc-test/build.rs b/libc-test/build.rs index e6c9c7907d..d41d561ff7 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -76,6 +76,7 @@ fn main() { cfg.header("windows.h"); cfg.header("process.h"); cfg.header("ws2ipdef.h"); + cfg.header("signal.h"); if target.contains("gnu") { cfg.header("ws2tcpip.h"); |