We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c1a63d5 + 4b72138 commit 7e3c99cCopy full SHA for 7e3c99c
src/unix/haiku/mod.rs
@@ -685,6 +685,9 @@ pub const EOF: ::c_int = -1;
685
pub const SEEK_SET: ::c_int = 0;
686
pub const SEEK_CUR: ::c_int = 1;
687
pub const SEEK_END: ::c_int = 2;
688
+pub const L_SET: ::c_int = SEEK_SET;
689
+pub const L_INCR: ::c_int = SEEK_CUR;
690
+pub const L_XTND: ::c_int = SEEK_END;
691
pub const _IOFBF: ::c_int = 0;
692
pub const _IONBF: ::c_int = 2;
693
pub const _IOLBF: ::c_int = 1;
0 commit comments