summaryrefslogtreecommitdiff
path: root/src/unix/redox
diff options
context:
space:
mode:
authorJoe Richey <joerichey@google.com>2019-07-09 02:48:53 -0700
committerJoe Richey <joerichey@google.com>2019-07-10 18:04:48 -0700
commitb7a27b5c7c9a0962d114b3330f68d06eb2fc7fec (patch)
tree28cc1ad0abf4c49f3f5210f0ffa90119f400e609 /src/unix/redox
parentaa3578fa8551a1b38985b166aee93bb03003b58b (diff)
downloadrust-libc-b7a27b5c7c9a0962d114b3330f68d06eb2fc7fec.tar.gz
libc::c_int -> ::c_int
Diffstat (limited to 'src/unix/redox')
-rw-r--r--src/unix/redox/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unix/redox/mod.rs b/src/unix/redox/mod.rs
index a25f79540d..121bb63a66 100644
--- a/src/unix/redox/mod.rs
+++ b/src/unix/redox/mod.rs
@@ -539,7 +539,7 @@ extern {
pub fn strerror_r(errnum: ::c_int, buf: *mut c_char,
buflen: ::size_t) -> ::c_int;
- pub fn __errno_location() -> *mut libc::c_int;
+ pub fn __errno_location() -> *mut ::c_int;
// malloc.h
pub fn memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void;