We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 027d483 + f1b396f commit c1ae35dCopy full SHA for c1ae35d
src/windows/gnu.rs
@@ -1,6 +1,11 @@
1
pub const L_tmpnam: ::c_uint = 14;
2
pub const TMP_MAX: ::c_uint = 0x7fff;
3
4
+// stdio file descriptor numbers
5
+pub const STDIN_FILENO: ::c_int = 0;
6
+pub const STDOUT_FILENO: ::c_int = 1;
7
+pub const STDERR_FILENO: ::c_int = 2;
8
+
9
extern {
10
pub fn strcasecmp(s1: *const ::c_char, s2: *const ::c_char) -> ::c_int;
11
pub fn strncasecmp(s1: *const ::c_char, s2: *const ::c_char,
0 commit comments