1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#![allow(non_upper_case_globals)]
use crate::{int, uint};
use crate::sys::types::off_t;
pub enum FILE {}
pub type fpos_t = off_t;
pub const _IOFBF: int = 0;
pub const _IOLBF: int = 1;
pub const _IONBF: int = 2;
pub const BUFSIZ: uint = 1024;
pub const EOF: int = -1;
pub const FOPEN_MAX: uint = 20;
pub const FILENAME_MAX: uint = 1024;
pub const L_tmpnam: uint = 1024;
pub const SEEK_SET: int = 0;
pub const SEEK_CUR: int = 1;
pub const SEEK_END: int = 2;
pub const TMP_MAX: uint = 308915776;