From 8dfe94b47169b44053a7f2dc7de6c53857c74ac7 Mon Sep 17 00:00:00 2001 From: Florian Bartels Date: Tue, 21 Feb 2023 10:47:04 +0100 Subject: [PATCH] Remove duplicated atof function declaration This adapts to the changes done with PR #3036 --- src/unix/nto/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/unix/nto/mod.rs b/src/unix/nto/mod.rs index 45e97ceacef9a..b8fcf9df8ee37 100644 --- a/src/unix/nto/mod.rs +++ b/src/unix/nto/mod.rs @@ -2748,7 +2748,6 @@ extern "C" { pub fn strerror_r(errnum: ::c_int, buf: *mut c_char, buflen: ::size_t) -> ::c_int; pub fn abs(i: ::c_int) -> ::c_int; - pub fn atof(s: *const ::c_char) -> ::c_double; pub fn labs(i: ::c_long) -> ::c_long; pub fn rand() -> ::c_int; pub fn srand(seed: ::c_uint);