summaryrefslogtreecommitdiffstats
path: root/src/c/posix.rs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2020-04-04 01:47:30 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2020-04-04 01:47:30 +0200
commit52b498494534784c77bfa4a93706be40620ebd9a (patch)
treed8499f6bec9a452231c4fcfc4d05d6b450cebf1b /src/c/posix.rs
parent9aae18d76454b01f07b177efafcc9867dfa7dff1 (diff)
downloadneco-52b498494534784c77bfa4a93706be40620ebd9a.tar
neco-52b498494534784c77bfa4a93706be40620ebd9a.zip
Lots of changes
Diffstat (limited to 'src/c/posix.rs')
-rw-r--r--src/c/posix.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/c/posix.rs b/src/c/posix.rs
index 3933a2e..6b63ea7 100644
--- a/src/c/posix.rs
+++ b/src/c/posix.rs
@@ -1,8 +1,7 @@
extern "C" {
pub fn strndup(cs: *const libc::c_char, n: libc::size_t) -> *mut libc::c_char;
- pub static mut stdin: *mut libc::FILE;
- pub static mut stdout: *mut libc::FILE;
- pub static mut stderr: *mut libc::FILE;
-
+ // pub static stdin: *mut libc::FILE;
+ pub static stdout: *mut libc::FILE;
+ pub static stderr: *mut libc::FILE;
}