Skip to content

Commit

Permalink
Auto merge of #3193 - devnexen:bsd_unitstd_lconst_haiku, r=JohnTitor
Browse files Browse the repository at this point in the history
haiku adding bsd missing constants
  • Loading branch information
bors committed Apr 10, 2023
2 parents c1a63d5 + 4b72138 commit 7e3c99c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/unix/haiku/mod.rs
Expand Up @@ -685,6 +685,9 @@ pub const EOF: ::c_int = -1;
pub const SEEK_SET: ::c_int = 0;
pub const SEEK_CUR: ::c_int = 1;
pub const SEEK_END: ::c_int = 2;
pub const L_SET: ::c_int = SEEK_SET;
pub const L_INCR: ::c_int = SEEK_CUR;
pub const L_XTND: ::c_int = SEEK_END;
pub const _IOFBF: ::c_int = 0;
pub const _IONBF: ::c_int = 2;
pub const _IOLBF: ::c_int = 1;
Expand Down

0 comments on commit 7e3c99c

Please sign in to comment.