summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNerijus Arlauskas <nercury@gmail.com>2016-04-06 20:56:54 +0300
committerNerijus Arlauskas <nercury@gmail.com>2016-04-06 20:56:54 +0300
commit0b7ccdd11917810fb9d514a55ab20ea8cb44eb8e (patch)
tree5b134bc7757db523a41c778919605945f4c6dedd
parentb2eec2470cb719309e6e8f40a7b27025ec2c8378 (diff)
downloadrust-libc-0b7ccdd11917810fb9d514a55ab20ea8cb44eb8e.tar.gz
Do not skip "signal" when building libc tests.
-rw-r--r--libc-test/build.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/libc-test/build.rs b/libc-test/build.rs
index 6475db5749..8212ea52e4 100644
--- a/libc-test/build.rs
+++ b/libc-test/build.rs
@@ -385,12 +385,6 @@ fn main() {
cfg.skip_fn_ptrcheck(move |name| {
match name {
- // This used to be called bsd_signal in rev 18 of the android
- // platform and is now just called signal, the old `bsd_signal`
- // symbol, however, still remains, just gives a different function
- // pointer.
- "signal" if android => true,
-
// dllimport weirdness?
_ if windows => true,