Skip to main content

relibc/header/bits_fcntl/
mod.rs

1use crate::platform::types::c_int;
2
3/// Seek relative to start-of-file.
4pub const SEEK_SET: c_int = 0;
5/// Seek relative to current position.
6pub const SEEK_CUR: c_int = 1;
7/// Seek relative to end-of-file.
8pub const SEEK_END: c_int = 2;