summaryrefslogtreecommitdiffstats
path: root/safe_libc/src/errno.rs
diff options
context:
space:
mode:
Diffstat (limited to 'safe_libc/src/errno.rs')
-rw-r--r--safe_libc/src/errno.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/safe_libc/src/errno.rs b/safe_libc/src/errno.rs
index 2a2220b..fdb1246 100644
--- a/safe_libc/src/errno.rs
+++ b/safe_libc/src/errno.rs
@@ -7,7 +7,7 @@ use core::fmt;
pub struct Errno(pub libc::c_int);
extern "C" {
- //#[ffi_const]
+ #[ffi_const]
pub fn __errno_location() -> *mut libc::c_int;
}