1 pub use ffi::c_void;
2 
3 pub type c_char = i8;
4 pub type c_uchar = u8;
5 pub type c_schar = i8;
6 pub type c_int = i32;
7 pub type c_uint = u32;
8 pub type c_short = i16;
9 pub type c_ushort = u16;
10 pub type c_long = i32;
11 pub type c_ulong = u32;
12 pub type c_longlong = i64;
13 pub type c_ulonglong = u64;
14 pub type intmax_t = i64;
15 pub type uintmax_t = u64;
16 pub type size_t = usize;
17 pub type ssize_t = isize;
18 pub type ptrdiff_t = isize;
19 pub type intptr_t = isize;
20 pub type uintptr_t = usize;
21 pub type off_t = i64;
22 pub type pid_t = i32;
23 pub type clock_t = c_longlong;
24 pub type time_t = c_longlong;
25 pub type c_double = f64;
26 pub type c_float = f32;
27 pub type ino_t = u64;
28 pub type sigset_t = c_uchar;
29 pub type suseconds_t = c_longlong;
30 pub type mode_t = u32;
31 pub type dev_t = u64;
32 pub type uid_t = u32;
33 pub type gid_t = u32;
34 pub type nlink_t = u64;
35 pub type blksize_t = c_long;
36 pub type blkcnt_t = i64;
37 pub type nfds_t = c_ulong;
38 pub type wchar_t = i32;
39 
40 pub type __wasi_rights_t = u64;
41 
42 #[allow(missing_copy_implementations)]
43 #[cfg_attr(feature = "extra_traits", derive(Debug))]
44 pub enum FILE {}
45 #[allow(missing_copy_implementations)]
46 #[cfg_attr(feature = "extra_traits", derive(Debug))]
47 pub enum DIR {}
48 #[allow(missing_copy_implementations)]
49 #[cfg_attr(feature = "extra_traits", derive(Debug))]
50 pub enum __locale_struct {}
51 
52 pub type locale_t = *mut __locale_struct;
53 
54 s! {
55     #[repr(align(8))]
56     pub struct fpos_t {
57         data: [u8; 16],
58     }
59 
60     pub struct tm {
61         pub tm_sec: c_int,
62         pub tm_min: c_int,
63         pub tm_hour: c_int,
64         pub tm_mday: c_int,
65         pub tm_mon: c_int,
66         pub tm_year: c_int,
67         pub tm_wday: c_int,
68         pub tm_yday: c_int,
69         pub tm_isdst: c_int,
70         pub __tm_gmtoff: c_int,
71         pub __tm_zone: *const c_char,
72         pub __tm_nsec: c_int,
73     }
74 
75     pub struct timeval {
76         pub tv_sec: time_t,
77         pub tv_usec: suseconds_t,
78     }
79 
80     pub struct timespec {
81         pub tv_sec: time_t,
82         pub tv_nsec: c_long,
83     }
84 
85     pub struct tms {
86         pub tms_utime: clock_t,
87         pub tms_stime: clock_t,
88         pub tms_cutime: clock_t,
89         pub tms_cstime: clock_t,
90     }
91 
92     pub struct itimerspec {
93         pub it_interval: timespec,
94         pub it_value: timespec,
95     }
96 
97     pub struct iovec {
98         pub iov_base: *mut c_void,
99         pub iov_len: size_t,
100     }
101 
102     pub struct lconv {
103         pub decimal_point: *mut c_char,
104         pub thousands_sep: *mut c_char,
105         pub grouping: *mut c_char,
106         pub int_curr_symbol: *mut c_char,
107         pub currency_symbol: *mut c_char,
108         pub mon_decimal_point: *mut c_char,
109         pub mon_thousands_sep: *mut c_char,
110         pub mon_grouping: *mut c_char,
111         pub positive_sign: *mut c_char,
112         pub negative_sign: *mut c_char,
113         pub int_frac_digits: c_char,
114         pub frac_digits: c_char,
115         pub p_cs_precedes: c_char,
116         pub p_sep_by_space: c_char,
117         pub n_cs_precedes: c_char,
118         pub n_sep_by_space: c_char,
119         pub p_sign_posn: c_char,
120         pub n_sign_posn: c_char,
121         pub int_p_cs_precedes: c_char,
122         pub int_p_sep_by_space: c_char,
123         pub int_n_cs_precedes: c_char,
124         pub int_n_sep_by_space: c_char,
125         pub int_p_sign_posn: c_char,
126         pub int_n_sign_posn: c_char,
127     }
128 
129     pub struct pollfd {
130         pub fd: c_int,
131         pub events: c_short,
132         pub revents: c_short,
133     }
134 
135     pub struct rusage {
136         pub ru_utime: timeval,
137         pub ru_stime: timeval,
138     }
139 
140     pub struct stat {
141         pub st_dev: dev_t,
142         pub st_ino: ino_t,
143         pub st_nlink: nlink_t,
144         pub st_mode: mode_t,
145         pub st_uid: uid_t,
146         pub st_gid: gid_t,
147         __pad0: c_uint,
148         pub st_rdev: dev_t,
149         pub st_size: off_t,
150         pub st_blksize: blksize_t,
151         pub st_blocks: blkcnt_t,
152         pub st_atim: timespec,
153         pub st_mtim: timespec,
154         pub st_ctim: timespec,
155         __reserved: [c_longlong; 3],
156     }
157 }
158 
159 // Declare dirent outside of s! so that it doesn't implement Copy, Eq, Hash,
160 // etc., since it contains a flexible array member with a dynamic size.
161 #[repr(C)]
162 #[allow(missing_copy_implementations)]
163 #[cfg_attr(feature = "extra_traits", derive(Debug))]
164 pub struct dirent {
165     pub d_ino: ino_t,
166     pub d_type: c_uchar,
167     /// d_name is declared in WASI libc as a flexible array member, which
168     /// can't be directly expressed in Rust. As an imperfect workaround,
169     /// declare it as a zero-length array instead.
170     pub d_name: [c_char; 0],
171 }
172 
173 pub const EXIT_SUCCESS: c_int = 0;
174 pub const EXIT_FAILURE: c_int = 1;
175 pub const STDIN_FILENO: c_int = 0;
176 pub const STDOUT_FILENO: c_int = 1;
177 pub const STDERR_FILENO: c_int = 2;
178 pub const SEEK_SET: c_int = 0;
179 pub const SEEK_CUR: c_int = 1;
180 pub const SEEK_END: c_int = 2;
181 pub const _IOFBF: c_int = 0;
182 pub const _IONBF: c_int = 2;
183 pub const _IOLBF: c_int = 1;
184 pub const F_GETFD: c_int = 1;
185 pub const F_SETFD: c_int = 2;
186 pub const F_GETFL: c_int = 3;
187 pub const F_SETFL: c_int = 4;
188 pub const FD_CLOEXEC: c_int = 1;
189 pub const FD_SETSIZE: size_t = 1024;
190 pub const O_APPEND: c_int = 0x0001;
191 pub const O_DSYNC: c_int = 0x0002;
192 pub const O_NONBLOCK: c_int = 0x0004;
193 pub const O_RSYNC: c_int = 0x0008;
194 pub const O_SYNC: c_int = 0x0010;
195 pub const O_CREAT: c_int = 0x0001 << 12;
196 pub const O_DIRECTORY: c_int = 0x0002 << 12;
197 pub const O_EXCL: c_int = 0x0004 << 12;
198 pub const O_TRUNC: c_int = 0x0008 << 12;
199 pub const O_NOFOLLOW: c_int = 0x01000000;
200 pub const O_EXEC: c_int = 0x02000000;
201 pub const O_RDONLY: c_int = 0x04000000;
202 pub const O_SEARCH: c_int = 0x08000000;
203 pub const O_WRONLY: c_int = 0x10000000;
204 pub const O_CLOEXEC: c_int = 0x0;
205 pub const O_RDWR: c_int = O_WRONLY | O_RDONLY;
206 pub const O_ACCMODE: c_int = O_EXEC | O_RDWR | O_SEARCH;
207 pub const O_NOCTTY: c_int = 0x0;
208 pub const POSIX_FADV_DONTNEED: c_int = 4;
209 pub const POSIX_FADV_NOREUSE: c_int = 5;
210 pub const POSIX_FADV_NORMAL: c_int = 0;
211 pub const POSIX_FADV_RANDOM: c_int = 2;
212 pub const POSIX_FADV_SEQUENTIAL: c_int = 1;
213 pub const POSIX_FADV_WILLNEED: c_int = 3;
214 pub const AT_FDCWD: ::c_int = -2;
215 pub const AT_EACCESS: c_int = 0x0;
216 pub const AT_SYMLINK_NOFOLLOW: c_int = 0x1;
217 pub const AT_SYMLINK_FOLLOW: c_int = 0x2;
218 pub const AT_REMOVEDIR: c_int = 0x4;
219 pub const UTIME_OMIT: c_long = 0xfffffffe;
220 pub const UTIME_NOW: c_long = 0xffffffff;
221 pub const S_IFIFO: mode_t = 49152;
222 pub const S_IFCHR: mode_t = 8192;
223 pub const S_IFBLK: mode_t = 24576;
224 pub const S_IFDIR: mode_t = 16384;
225 pub const S_IFREG: mode_t = 32768;
226 pub const S_IFLNK: mode_t = 40960;
227 pub const S_IFSOCK: mode_t = 49152;
228 pub const S_IFMT: mode_t = 57344;
229 pub const S_IXOTH: mode_t = 0x1;
230 pub const S_IWOTH: mode_t = 0x2;
231 pub const S_IROTH: mode_t = 0x4;
232 pub const S_IXGRP: mode_t = 0x8;
233 pub const S_IWGRP: mode_t = 0x10;
234 pub const S_IRGRP: mode_t = 0x20;
235 pub const S_IXUSR: mode_t = 0x40;
236 pub const S_IWUSR: mode_t = 0x80;
237 pub const S_IRUSR: mode_t = 0x100;
238 pub const S_ISVTX: mode_t = 0x200;
239 pub const S_ISGID: mode_t = 0x400;
240 pub const S_ISUID: mode_t = 0x800;
241 pub const DT_UNKNOWN: u8 = 0;
242 pub const DT_BLK: u8 = 1;
243 pub const DT_CHR: u8 = 2;
244 pub const DT_DIR: u8 = 3;
245 pub const DT_REG: u8 = 4;
246 pub const DT_LNK: u8 = 7;
247 pub const FIONREAD: c_int = 1;
248 pub const FIONBIO: c_int = 2;
249 pub const F_OK: ::c_int = 0;
250 pub const R_OK: ::c_int = 4;
251 pub const W_OK: ::c_int = 2;
252 pub const X_OK: ::c_int = 1;
253 pub const POLLIN: ::c_short = 0x1;
254 pub const POLLOUT: ::c_short = 0x2;
255 pub const POLLERR: ::c_short = 0x1000;
256 pub const POLLHUP: ::c_short = 0x2000;
257 pub const POLLNVAL: ::c_short = 0x4000;
258 pub const POLLRDNORM: ::c_short = 0x1;
259 pub const POLLWRNORM: ::c_short = 0x2;
260 
261 pub const E2BIG: c_int = 1;
262 pub const EACCES: c_int = 2;
263 pub const EADDRINUSE: c_int = 3;
264 pub const EADDRNOTAVAIL: c_int = 4;
265 pub const EAFNOSUPPORT: c_int = 5;
266 pub const EAGAIN: c_int = 6;
267 pub const EALREADY: c_int = 7;
268 pub const EBADF: c_int = 8;
269 pub const EBADMSG: c_int = 9;
270 pub const EBUSY: c_int = 10;
271 pub const ECANCELED: c_int = 11;
272 pub const ECHILD: c_int = 12;
273 pub const ECONNABORTED: c_int = 13;
274 pub const ECONNREFUSED: c_int = 14;
275 pub const ECONNRESET: c_int = 15;
276 pub const EDEADLK: c_int = 16;
277 pub const EDESTADDRREQ: c_int = 17;
278 pub const EDOM: c_int = 18;
279 pub const EDQUOT: c_int = 19;
280 pub const EEXIST: c_int = 20;
281 pub const EFAULT: c_int = 21;
282 pub const EFBIG: c_int = 22;
283 pub const EHOSTUNREACH: c_int = 23;
284 pub const EIDRM: c_int = 24;
285 pub const EILSEQ: c_int = 25;
286 pub const EINPROGRESS: c_int = 26;
287 pub const EINTR: c_int = 27;
288 pub const EINVAL: c_int = 28;
289 pub const EIO: c_int = 29;
290 pub const EISCONN: c_int = 30;
291 pub const EISDIR: c_int = 31;
292 pub const ELOOP: c_int = 32;
293 pub const EMFILE: c_int = 33;
294 pub const EMLINK: c_int = 34;
295 pub const EMSGSIZE: c_int = 35;
296 pub const EMULTIHOP: c_int = 36;
297 pub const ENAMETOOLONG: c_int = 37;
298 pub const ENETDOWN: c_int = 38;
299 pub const ENETRESET: c_int = 39;
300 pub const ENETUNREACH: c_int = 40;
301 pub const ENFILE: c_int = 41;
302 pub const ENOBUFS: c_int = 42;
303 pub const ENODEV: c_int = 43;
304 pub const ENOENT: c_int = 44;
305 pub const ENOEXEC: c_int = 45;
306 pub const ENOLCK: c_int = 46;
307 pub const ENOLINK: c_int = 47;
308 pub const ENOMEM: c_int = 48;
309 pub const ENOMSG: c_int = 49;
310 pub const ENOPROTOOPT: c_int = 50;
311 pub const ENOSPC: c_int = 51;
312 pub const ENOSYS: c_int = 52;
313 pub const ENOTCONN: c_int = 53;
314 pub const ENOTDIR: c_int = 54;
315 pub const ENOTEMPTY: c_int = 55;
316 pub const ENOTRECOVERABLE: c_int = 56;
317 pub const ENOTSOCK: c_int = 57;
318 pub const ENOTSUP: c_int = 58;
319 pub const ENOTTY: c_int = 59;
320 pub const ENXIO: c_int = 60;
321 pub const EOVERFLOW: c_int = 61;
322 pub const EOWNERDEAD: c_int = 62;
323 pub const EPERM: c_int = 63;
324 pub const EPIPE: c_int = 64;
325 pub const EPROTO: c_int = 65;
326 pub const EPROTONOSUPPORT: c_int = 66;
327 pub const EPROTOTYPE: c_int = 67;
328 pub const ERANGE: c_int = 68;
329 pub const EROFS: c_int = 69;
330 pub const ESPIPE: c_int = 70;
331 pub const ESRCH: c_int = 71;
332 pub const ESTALE: c_int = 72;
333 pub const ETIMEDOUT: c_int = 73;
334 pub const ETXTBSY: c_int = 74;
335 pub const EXDEV: c_int = 75;
336 pub const ENOTCAPABLE: c_int = 76;
337 pub const EOPNOTSUPP: c_int = ENOTSUP;
338 pub const EWOULDBLOCK: c_int = EAGAIN;
339 
340 pub const _SC_PAGESIZE: c_int = 30;
341 pub const _SC_PAGE_SIZE: ::c_int = _SC_PAGESIZE;
342 pub const _SC_IOV_MAX: c_int = 60;
343 pub const _SC_SYMLOOP_MAX: c_int = 173;
344 
345 #[cfg_attr(
346     feature = "rustc-dep-of-std",
347     link(name = "c", kind = "static", cfg(target_feature = "crt-static"))
348 )]
349 #[cfg_attr(
350     feature = "rustc-dep-of-std",
351     link(name = "c", cfg(not(target_feature = "crt-static")))
352 )]
353 extern "C" {
_Exit(code: c_int) -> !354     pub fn _Exit(code: c_int) -> !;
_exit(code: c_int) -> !355     pub fn _exit(code: c_int) -> !;
abort() -> !356     pub fn abort() -> !;
aligned_alloc(a: size_t, b: size_t) -> *mut c_void357     pub fn aligned_alloc(a: size_t, b: size_t) -> *mut c_void;
calloc(amt: size_t, amt2: size_t) -> *mut c_void358     pub fn calloc(amt: size_t, amt2: size_t) -> *mut c_void;
exit(code: c_int) -> !359     pub fn exit(code: c_int) -> !;
free(ptr: *mut c_void)360     pub fn free(ptr: *mut c_void);
getenv(s: *const c_char) -> *mut c_char361     pub fn getenv(s: *const c_char) -> *mut c_char;
malloc(amt: size_t) -> *mut c_void362     pub fn malloc(amt: size_t) -> *mut c_void;
malloc_usable_size(ptr: *mut c_void) -> size_t363     pub fn malloc_usable_size(ptr: *mut c_void) -> size_t;
sbrk(increment: ::intptr_t) -> *mut ::c_void364     pub fn sbrk(increment: ::intptr_t) -> *mut ::c_void;
rand() -> c_int365     pub fn rand() -> c_int;
read(fd: c_int, ptr: *mut c_void, size: size_t) -> ssize_t366     pub fn read(fd: c_int, ptr: *mut c_void, size: size_t) -> ssize_t;
realloc(ptr: *mut c_void, amt: size_t) -> *mut c_void367     pub fn realloc(ptr: *mut c_void, amt: size_t) -> *mut c_void;
setenv(k: *const c_char, v: *const c_char, a: c_int) -> c_int368     pub fn setenv(k: *const c_char, v: *const c_char, a: c_int) -> c_int;
unsetenv(k: *const c_char) -> c_int369     pub fn unsetenv(k: *const c_char) -> c_int;
clearenv() -> ::c_int370     pub fn clearenv() -> ::c_int;
write(fd: c_int, ptr: *const c_void, size: size_t) -> ssize_t371     pub fn write(fd: c_int, ptr: *const c_void, size: size_t) -> ssize_t;
372     pub static mut environ: *mut *mut c_char;
fopen(a: *const c_char, b: *const c_char) -> *mut FILE373     pub fn fopen(a: *const c_char, b: *const c_char) -> *mut FILE;
freopen(a: *const c_char, b: *const c_char, f: *mut FILE) -> *mut FILE374     pub fn freopen(a: *const c_char, b: *const c_char, f: *mut FILE) -> *mut FILE;
fclose(f: *mut FILE) -> c_int375     pub fn fclose(f: *mut FILE) -> c_int;
remove(a: *const c_char) -> c_int376     pub fn remove(a: *const c_char) -> c_int;
rename(a: *const c_char, b: *const c_char) -> c_int377     pub fn rename(a: *const c_char, b: *const c_char) -> c_int;
feof(f: *mut FILE) -> c_int378     pub fn feof(f: *mut FILE) -> c_int;
ferror(f: *mut FILE) -> c_int379     pub fn ferror(f: *mut FILE) -> c_int;
fflush(f: *mut FILE) -> c_int380     pub fn fflush(f: *mut FILE) -> c_int;
clearerr(f: *mut FILE)381     pub fn clearerr(f: *mut FILE);
fseek(f: *mut FILE, b: c_long, c: c_int) -> c_int382     pub fn fseek(f: *mut FILE, b: c_long, c: c_int) -> c_int;
ftell(f: *mut FILE) -> c_long383     pub fn ftell(f: *mut FILE) -> c_long;
rewind(f: *mut FILE)384     pub fn rewind(f: *mut FILE);
fgetpos(f: *mut FILE, pos: *mut fpos_t) -> c_int385     pub fn fgetpos(f: *mut FILE, pos: *mut fpos_t) -> c_int;
fsetpos(f: *mut FILE, pos: *const fpos_t) -> c_int386     pub fn fsetpos(f: *mut FILE, pos: *const fpos_t) -> c_int;
fread(buf: *mut c_void, a: size_t, b: size_t, f: *mut FILE) -> size_t387     pub fn fread(buf: *mut c_void, a: size_t, b: size_t, f: *mut FILE) -> size_t;
fwrite(buf: *const c_void, a: size_t, b: size_t, f: *mut FILE) -> size_t388     pub fn fwrite(buf: *const c_void, a: size_t, b: size_t, f: *mut FILE) -> size_t;
fgetc(f: *mut FILE) -> c_int389     pub fn fgetc(f: *mut FILE) -> c_int;
getc(f: *mut FILE) -> c_int390     pub fn getc(f: *mut FILE) -> c_int;
getchar() -> c_int391     pub fn getchar() -> c_int;
ungetc(a: c_int, f: *mut FILE) -> c_int392     pub fn ungetc(a: c_int, f: *mut FILE) -> c_int;
fputc(a: c_int, f: *mut FILE) -> c_int393     pub fn fputc(a: c_int, f: *mut FILE) -> c_int;
putc(a: c_int, f: *mut FILE) -> c_int394     pub fn putc(a: c_int, f: *mut FILE) -> c_int;
putchar(a: c_int) -> c_int395     pub fn putchar(a: c_int) -> c_int;
fputs(a: *const c_char, f: *mut FILE) -> c_int396     pub fn fputs(a: *const c_char, f: *mut FILE) -> c_int;
puts(a: *const c_char) -> c_int397     pub fn puts(a: *const c_char) -> c_int;
perror(a: *const c_char)398     pub fn perror(a: *const c_char);
srand(a: c_uint)399     pub fn srand(a: c_uint);
atexit(a: extern "C" fn()) -> c_int400     pub fn atexit(a: extern "C" fn()) -> c_int;
at_quick_exit(a: extern "C" fn()) -> c_int401     pub fn at_quick_exit(a: extern "C" fn()) -> c_int;
quick_exit(a: c_int) -> !402     pub fn quick_exit(a: c_int) -> !;
posix_memalign(a: *mut *mut c_void, b: size_t, c: size_t) -> c_int403     pub fn posix_memalign(a: *mut *mut c_void, b: size_t, c: size_t) -> c_int;
rand_r(a: *mut c_uint) -> c_int404     pub fn rand_r(a: *mut c_uint) -> c_int;
random() -> c_long405     pub fn random() -> c_long;
srandom(a: c_uint)406     pub fn srandom(a: c_uint);
putenv(a: *mut c_char) -> c_int407     pub fn putenv(a: *mut c_char) -> c_int;
clock() -> clock_t408     pub fn clock() -> clock_t;
time(a: *mut time_t) -> time_t409     pub fn time(a: *mut time_t) -> time_t;
difftime(a: time_t, b: time_t) -> c_double410     pub fn difftime(a: time_t, b: time_t) -> c_double;
mktime(a: *mut tm) -> time_t411     pub fn mktime(a: *mut tm) -> time_t;
strftime(a: *mut c_char, b: size_t, c: *const c_char, d: *const tm) -> size_t412     pub fn strftime(a: *mut c_char, b: size_t, c: *const c_char, d: *const tm) -> size_t;
gmtime(a: *const time_t) -> *mut tm413     pub fn gmtime(a: *const time_t) -> *mut tm;
gmtime_r(a: *const time_t, b: *mut tm) -> *mut tm414     pub fn gmtime_r(a: *const time_t, b: *mut tm) -> *mut tm;
localtime(a: *const time_t) -> *mut tm415     pub fn localtime(a: *const time_t) -> *mut tm;
localtime_r(a: *const time_t, b: *mut tm) -> *mut tm416     pub fn localtime_r(a: *const time_t, b: *mut tm) -> *mut tm;
asctime_r(a: *const tm, b: *mut c_char) -> *mut c_char417     pub fn asctime_r(a: *const tm, b: *mut c_char) -> *mut c_char;
ctime_r(a: *const time_t, b: *mut c_char) -> *mut c_char418     pub fn ctime_r(a: *const time_t, b: *mut c_char) -> *mut c_char;
419 
nanosleep(a: *const timespec, b: *mut timespec) -> c_int420     pub fn nanosleep(a: *const timespec, b: *mut timespec) -> c_int;
421     // pub fn clock_getres(a: clockid_t, b: *mut timespec) -> c_int;
422     // pub fn clock_gettime(a: clockid_t, b: *mut timespec) -> c_int;
423     // pub fn clock_nanosleep(
424     //     a: clockid_t,
425     //     a2: c_int,
426     //     b: *const timespec,
427     //     c: *mut timespec,
428     // ) -> c_int;
429 
isalnum(c: c_int) -> c_int430     pub fn isalnum(c: c_int) -> c_int;
isalpha(c: c_int) -> c_int431     pub fn isalpha(c: c_int) -> c_int;
iscntrl(c: c_int) -> c_int432     pub fn iscntrl(c: c_int) -> c_int;
isdigit(c: c_int) -> c_int433     pub fn isdigit(c: c_int) -> c_int;
isgraph(c: c_int) -> c_int434     pub fn isgraph(c: c_int) -> c_int;
islower(c: c_int) -> c_int435     pub fn islower(c: c_int) -> c_int;
isprint(c: c_int) -> c_int436     pub fn isprint(c: c_int) -> c_int;
ispunct(c: c_int) -> c_int437     pub fn ispunct(c: c_int) -> c_int;
isspace(c: c_int) -> c_int438     pub fn isspace(c: c_int) -> c_int;
isupper(c: c_int) -> c_int439     pub fn isupper(c: c_int) -> c_int;
isxdigit(c: c_int) -> c_int440     pub fn isxdigit(c: c_int) -> c_int;
isblank(c: c_int) -> c_int441     pub fn isblank(c: c_int) -> c_int;
tolower(c: c_int) -> c_int442     pub fn tolower(c: c_int) -> c_int;
toupper(c: c_int) -> c_int443     pub fn toupper(c: c_int) -> c_int;
setvbuf(stream: *mut FILE, buffer: *mut c_char, mode: c_int, size: size_t) -> c_int444     pub fn setvbuf(stream: *mut FILE, buffer: *mut c_char, mode: c_int, size: size_t) -> c_int;
setbuf(stream: *mut FILE, buf: *mut c_char)445     pub fn setbuf(stream: *mut FILE, buf: *mut c_char);
fgets(buf: *mut c_char, n: c_int, stream: *mut FILE) -> *mut c_char446     pub fn fgets(buf: *mut c_char, n: c_int, stream: *mut FILE) -> *mut c_char;
atoi(s: *const c_char) -> c_int447     pub fn atoi(s: *const c_char) -> c_int;
atof(s: *const c_char) -> c_double448     pub fn atof(s: *const c_char) -> c_double;
strtod(s: *const c_char, endp: *mut *mut c_char) -> c_double449     pub fn strtod(s: *const c_char, endp: *mut *mut c_char) -> c_double;
strtof(s: *const c_char, endp: *mut *mut c_char) -> c_float450     pub fn strtof(s: *const c_char, endp: *mut *mut c_char) -> c_float;
strtol(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_long451     pub fn strtol(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_long;
strtoul(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_ulong452     pub fn strtoul(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_ulong;
453 
strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char454     pub fn strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char;
strncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_char455     pub fn strncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_char;
strcat(s: *mut c_char, ct: *const c_char) -> *mut c_char456     pub fn strcat(s: *mut c_char, ct: *const c_char) -> *mut c_char;
strncat(s: *mut c_char, ct: *const c_char, n: size_t) -> *mut c_char457     pub fn strncat(s: *mut c_char, ct: *const c_char, n: size_t) -> *mut c_char;
strcmp(cs: *const c_char, ct: *const c_char) -> c_int458     pub fn strcmp(cs: *const c_char, ct: *const c_char) -> c_int;
strncmp(cs: *const c_char, ct: *const c_char, n: size_t) -> c_int459     pub fn strncmp(cs: *const c_char, ct: *const c_char, n: size_t) -> c_int;
strcoll(cs: *const c_char, ct: *const c_char) -> c_int460     pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int;
strchr(cs: *const c_char, c: c_int) -> *mut c_char461     pub fn strchr(cs: *const c_char, c: c_int) -> *mut c_char;
strrchr(cs: *const c_char, c: c_int) -> *mut c_char462     pub fn strrchr(cs: *const c_char, c: c_int) -> *mut c_char;
strspn(cs: *const c_char, ct: *const c_char) -> size_t463     pub fn strspn(cs: *const c_char, ct: *const c_char) -> size_t;
strcspn(cs: *const c_char, ct: *const c_char) -> size_t464     pub fn strcspn(cs: *const c_char, ct: *const c_char) -> size_t;
strdup(cs: *const c_char) -> *mut c_char465     pub fn strdup(cs: *const c_char) -> *mut c_char;
strndup(cs: *const c_char, n: size_t) -> *mut c_char466     pub fn strndup(cs: *const c_char, n: size_t) -> *mut c_char;
strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_char467     pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_char;
strstr(cs: *const c_char, ct: *const c_char) -> *mut c_char468     pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
strcasecmp(s1: *const c_char, s2: *const c_char) -> c_int469     pub fn strcasecmp(s1: *const c_char, s2: *const c_char) -> c_int;
strncasecmp(s1: *const c_char, s2: *const c_char, n: size_t) -> c_int470     pub fn strncasecmp(s1: *const c_char, s2: *const c_char, n: size_t) -> c_int;
strlen(cs: *const c_char) -> size_t471     pub fn strlen(cs: *const c_char) -> size_t;
strnlen(cs: *const c_char, maxlen: size_t) -> size_t472     pub fn strnlen(cs: *const c_char, maxlen: size_t) -> size_t;
strerror(n: c_int) -> *mut c_char473     pub fn strerror(n: c_int) -> *mut c_char;
strtok(s: *mut c_char, t: *const c_char) -> *mut c_char474     pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_char;
strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t475     pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t;
476 
memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void477     pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void;
memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int478     pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int;
memcpy(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void479     pub fn memcpy(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void;
memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void480     pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void;
memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void481     pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void;
482 
fprintf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int483     pub fn fprintf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int;
printf(format: *const ::c_char, ...) -> ::c_int484     pub fn printf(format: *const ::c_char, ...) -> ::c_int;
snprintf(s: *mut ::c_char, n: ::size_t, format: *const ::c_char, ...) -> ::c_int485     pub fn snprintf(s: *mut ::c_char, n: ::size_t, format: *const ::c_char, ...) -> ::c_int;
sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int486     pub fn sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int;
fscanf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int487     pub fn fscanf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int;
scanf(format: *const ::c_char, ...) -> ::c_int488     pub fn scanf(format: *const ::c_char, ...) -> ::c_int;
sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int489     pub fn sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int;
getchar_unlocked() -> ::c_int490     pub fn getchar_unlocked() -> ::c_int;
putchar_unlocked(c: ::c_int) -> ::c_int491     pub fn putchar_unlocked(c: ::c_int) -> ::c_int;
492 
shutdown(socket: ::c_int, how: ::c_int) -> ::c_int493     pub fn shutdown(socket: ::c_int, how: ::c_int) -> ::c_int;
fstat(fildes: ::c_int, buf: *mut stat) -> ::c_int494     pub fn fstat(fildes: ::c_int, buf: *mut stat) -> ::c_int;
mkdir(path: *const c_char, mode: mode_t) -> ::c_int495     pub fn mkdir(path: *const c_char, mode: mode_t) -> ::c_int;
stat(path: *const c_char, buf: *mut stat) -> ::c_int496     pub fn stat(path: *const c_char, buf: *mut stat) -> ::c_int;
fdopen(fd: ::c_int, mode: *const c_char) -> *mut ::FILE497     pub fn fdopen(fd: ::c_int, mode: *const c_char) -> *mut ::FILE;
fileno(stream: *mut ::FILE) -> ::c_int498     pub fn fileno(stream: *mut ::FILE) -> ::c_int;
open(path: *const c_char, oflag: ::c_int, ...) -> ::c_int499     pub fn open(path: *const c_char, oflag: ::c_int, ...) -> ::c_int;
creat(path: *const c_char, mode: mode_t) -> ::c_int500     pub fn creat(path: *const c_char, mode: mode_t) -> ::c_int;
fcntl(fd: ::c_int, cmd: ::c_int, ...) -> ::c_int501     pub fn fcntl(fd: ::c_int, cmd: ::c_int, ...) -> ::c_int;
opendir(dirname: *const c_char) -> *mut ::DIR502     pub fn opendir(dirname: *const c_char) -> *mut ::DIR;
fdopendir(fd: ::c_int) -> *mut ::DIR503     pub fn fdopendir(fd: ::c_int) -> *mut ::DIR;
readdir(dirp: *mut ::DIR) -> *mut ::dirent504     pub fn readdir(dirp: *mut ::DIR) -> *mut ::dirent;
closedir(dirp: *mut ::DIR) -> ::c_int505     pub fn closedir(dirp: *mut ::DIR) -> ::c_int;
rewinddir(dirp: *mut ::DIR)506     pub fn rewinddir(dirp: *mut ::DIR);
dirfd(dirp: *mut ::DIR) -> ::c_int507     pub fn dirfd(dirp: *mut ::DIR) -> ::c_int;
seekdir(dirp: *mut ::DIR, loc: ::c_long)508     pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long);
telldir(dirp: *mut ::DIR) -> ::c_long509     pub fn telldir(dirp: *mut ::DIR) -> ::c_long;
510 
openat(dirfd: ::c_int, pathname: *const ::c_char, flags: ::c_int, ...) -> ::c_int511     pub fn openat(dirfd: ::c_int, pathname: *const ::c_char, flags: ::c_int, ...) -> ::c_int;
fstatat( dirfd: ::c_int, pathname: *const ::c_char, buf: *mut stat, flags: ::c_int, ) -> ::c_int512     pub fn fstatat(
513         dirfd: ::c_int,
514         pathname: *const ::c_char,
515         buf: *mut stat,
516         flags: ::c_int,
517     ) -> ::c_int;
linkat( olddirfd: ::c_int, oldpath: *const ::c_char, newdirfd: ::c_int, newpath: *const ::c_char, flags: ::c_int, ) -> ::c_int518     pub fn linkat(
519         olddirfd: ::c_int,
520         oldpath: *const ::c_char,
521         newdirfd: ::c_int,
522         newpath: *const ::c_char,
523         flags: ::c_int,
524     ) -> ::c_int;
mkdirat(dirfd: ::c_int, pathname: *const ::c_char, mode: ::mode_t) -> ::c_int525     pub fn mkdirat(dirfd: ::c_int, pathname: *const ::c_char, mode: ::mode_t) -> ::c_int;
readlinkat( dirfd: ::c_int, pathname: *const ::c_char, buf: *mut ::c_char, bufsiz: ::size_t, ) -> ::ssize_t526     pub fn readlinkat(
527         dirfd: ::c_int,
528         pathname: *const ::c_char,
529         buf: *mut ::c_char,
530         bufsiz: ::size_t,
531     ) -> ::ssize_t;
renameat( olddirfd: ::c_int, oldpath: *const ::c_char, newdirfd: ::c_int, newpath: *const ::c_char, ) -> ::c_int532     pub fn renameat(
533         olddirfd: ::c_int,
534         oldpath: *const ::c_char,
535         newdirfd: ::c_int,
536         newpath: *const ::c_char,
537     ) -> ::c_int;
symlinkat( target: *const ::c_char, newdirfd: ::c_int, linkpath: *const ::c_char, ) -> ::c_int538     pub fn symlinkat(
539         target: *const ::c_char,
540         newdirfd: ::c_int,
541         linkpath: *const ::c_char,
542     ) -> ::c_int;
unlinkat(dirfd: ::c_int, pathname: *const ::c_char, flags: ::c_int) -> ::c_int543     pub fn unlinkat(dirfd: ::c_int, pathname: *const ::c_char, flags: ::c_int) -> ::c_int;
544 
access(path: *const c_char, amode: ::c_int) -> ::c_int545     pub fn access(path: *const c_char, amode: ::c_int) -> ::c_int;
close(fd: ::c_int) -> ::c_int546     pub fn close(fd: ::c_int) -> ::c_int;
fpathconf(filedes: ::c_int, name: ::c_int) -> c_long547     pub fn fpathconf(filedes: ::c_int, name: ::c_int) -> c_long;
getopt(argc: ::c_int, argv: *const *mut c_char, optstr: *const c_char) -> ::c_int548     pub fn getopt(argc: ::c_int, argv: *const *mut c_char, optstr: *const c_char) -> ::c_int;
isatty(fd: ::c_int) -> ::c_int549     pub fn isatty(fd: ::c_int) -> ::c_int;
link(src: *const c_char, dst: *const c_char) -> ::c_int550     pub fn link(src: *const c_char, dst: *const c_char) -> ::c_int;
lseek(fd: ::c_int, offset: off_t, whence: ::c_int) -> off_t551     pub fn lseek(fd: ::c_int, offset: off_t, whence: ::c_int) -> off_t;
pathconf(path: *const c_char, name: ::c_int) -> c_long552     pub fn pathconf(path: *const c_char, name: ::c_int) -> c_long;
rmdir(path: *const c_char) -> ::c_int553     pub fn rmdir(path: *const c_char) -> ::c_int;
sleep(secs: ::c_uint) -> ::c_uint554     pub fn sleep(secs: ::c_uint) -> ::c_uint;
unlink(c: *const c_char) -> ::c_int555     pub fn unlink(c: *const c_char) -> ::c_int;
pread(fd: ::c_int, buf: *mut ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t556     pub fn pread(fd: ::c_int, buf: *mut ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t;
pwrite(fd: ::c_int, buf: *const ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t557     pub fn pwrite(fd: ::c_int, buf: *const ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t;
558 
lstat(path: *const c_char, buf: *mut stat) -> ::c_int559     pub fn lstat(path: *const c_char, buf: *mut stat) -> ::c_int;
560 
fsync(fd: ::c_int) -> ::c_int561     pub fn fsync(fd: ::c_int) -> ::c_int;
fdatasync(fd: ::c_int) -> ::c_int562     pub fn fdatasync(fd: ::c_int) -> ::c_int;
563 
symlink(path1: *const c_char, path2: *const c_char) -> ::c_int564     pub fn symlink(path1: *const c_char, path2: *const c_char) -> ::c_int;
565 
truncate(path: *const c_char, length: off_t) -> ::c_int566     pub fn truncate(path: *const c_char, length: off_t) -> ::c_int;
ftruncate(fd: ::c_int, length: off_t) -> ::c_int567     pub fn ftruncate(fd: ::c_int, length: off_t) -> ::c_int;
568 
getrusage(resource: ::c_int, usage: *mut rusage) -> ::c_int569     pub fn getrusage(resource: ::c_int, usage: *mut rusage) -> ::c_int;
570 
gettimeofday(tp: *mut ::timeval, tz: *mut ::c_void) -> ::c_int571     pub fn gettimeofday(tp: *mut ::timeval, tz: *mut ::c_void) -> ::c_int;
times(buf: *mut ::tms) -> ::clock_t572     pub fn times(buf: *mut ::tms) -> ::clock_t;
573 
strerror_r(errnum: ::c_int, buf: *mut c_char, buflen: ::size_t) -> ::c_int574     pub fn strerror_r(errnum: ::c_int, buf: *mut c_char, buflen: ::size_t) -> ::c_int;
575 
usleep(secs: ::c_uint) -> ::c_int576     pub fn usleep(secs: ::c_uint) -> ::c_int;
send(socket: ::c_int, buf: *const ::c_void, len: ::size_t, flags: ::c_int) -> ::ssize_t577     pub fn send(socket: ::c_int, buf: *const ::c_void, len: ::size_t, flags: ::c_int) -> ::ssize_t;
recv(socket: ::c_int, buf: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::ssize_t578     pub fn recv(socket: ::c_int, buf: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::ssize_t;
poll(fds: *mut pollfd, nfds: nfds_t, timeout: ::c_int) -> ::c_int579     pub fn poll(fds: *mut pollfd, nfds: nfds_t, timeout: ::c_int) -> ::c_int;
setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_char580     pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_char;
localeconv() -> *mut lconv581     pub fn localeconv() -> *mut lconv;
582 
readlink(path: *const c_char, buf: *mut c_char, bufsz: ::size_t) -> ::ssize_t583     pub fn readlink(path: *const c_char, buf: *mut c_char, bufsz: ::size_t) -> ::ssize_t;
584 
timegm(tm: *mut ::tm) -> time_t585     pub fn timegm(tm: *mut ::tm) -> time_t;
586 
sysconf(name: ::c_int) -> ::c_long587     pub fn sysconf(name: ::c_int) -> ::c_long;
588 
ioctl(fd: ::c_int, request: ::c_int, ...) -> ::c_int589     pub fn ioctl(fd: ::c_int, request: ::c_int, ...) -> ::c_int;
590 
fseeko(stream: *mut ::FILE, offset: ::off_t, whence: ::c_int) -> ::c_int591     pub fn fseeko(stream: *mut ::FILE, offset: ::off_t, whence: ::c_int) -> ::c_int;
ftello(stream: *mut ::FILE) -> ::off_t592     pub fn ftello(stream: *mut ::FILE) -> ::off_t;
posix_fallocate(fd: ::c_int, offset: ::off_t, len: ::off_t) -> ::c_int593     pub fn posix_fallocate(fd: ::c_int, offset: ::off_t, len: ::off_t) -> ::c_int;
594 
strcasestr(cs: *const c_char, ct: *const c_char) -> *mut c_char595     pub fn strcasestr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
getline(lineptr: *mut *mut c_char, n: *mut size_t, stream: *mut FILE) -> ssize_t596     pub fn getline(lineptr: *mut *mut c_char, n: *mut size_t, stream: *mut FILE) -> ssize_t;
597 
faccessat( dirfd: ::c_int, pathname: *const ::c_char, mode: ::c_int, flags: ::c_int, ) -> ::c_int598     pub fn faccessat(
599         dirfd: ::c_int,
600         pathname: *const ::c_char,
601         mode: ::c_int,
602         flags: ::c_int,
603     ) -> ::c_int;
writev(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int) -> ::ssize_t604     pub fn writev(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int) -> ::ssize_t;
readv(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int) -> ::ssize_t605     pub fn readv(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int) -> ::ssize_t;
pwritev(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, offset: ::off_t) -> ::ssize_t606     pub fn pwritev(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, offset: ::off_t)
607         -> ::ssize_t;
preadv(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, offset: ::off_t) -> ::ssize_t608     pub fn preadv(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, offset: ::off_t) -> ::ssize_t;
posix_fadvise(fd: ::c_int, offset: ::off_t, len: ::off_t, advise: ::c_int) -> ::c_int609     pub fn posix_fadvise(fd: ::c_int, offset: ::off_t, len: ::off_t, advise: ::c_int) -> ::c_int;
futimens(fd: ::c_int, times: *const ::timespec) -> ::c_int610     pub fn futimens(fd: ::c_int, times: *const ::timespec) -> ::c_int;
utimensat( dirfd: ::c_int, path: *const ::c_char, times: *const ::timespec, flag: ::c_int, ) -> ::c_int611     pub fn utimensat(
612         dirfd: ::c_int,
613         path: *const ::c_char,
614         times: *const ::timespec,
615         flag: ::c_int,
616     ) -> ::c_int;
getentropy(buf: *mut ::c_void, buflen: ::size_t) -> ::c_int617     pub fn getentropy(buf: *mut ::c_void, buflen: ::size_t) -> ::c_int;
memrchr(cx: *const ::c_void, c: ::c_int, n: ::size_t) -> *mut ::c_void618     pub fn memrchr(cx: *const ::c_void, c: ::c_int, n: ::size_t) -> *mut ::c_void;
abs(i: c_int) -> c_int619     pub fn abs(i: c_int) -> c_int;
labs(i: c_long) -> c_long620     pub fn labs(i: c_long) -> c_long;
duplocale(base: ::locale_t) -> ::locale_t621     pub fn duplocale(base: ::locale_t) -> ::locale_t;
freelocale(loc: ::locale_t)622     pub fn freelocale(loc: ::locale_t);
newlocale(mask: ::c_int, locale: *const ::c_char, base: ::locale_t) -> ::locale_t623     pub fn newlocale(mask: ::c_int, locale: *const ::c_char, base: ::locale_t) -> ::locale_t;
uselocale(loc: ::locale_t) -> ::locale_t624     pub fn uselocale(loc: ::locale_t) -> ::locale_t;
sched_yield() -> ::c_int625     pub fn sched_yield() -> ::c_int;
626 
__wasilibc_register_preopened_fd(fd: c_int, path: *const c_char) -> c_int627     pub fn __wasilibc_register_preopened_fd(fd: c_int, path: *const c_char) -> c_int;
__wasilibc_fd_renumber(fd: c_int, newfd: c_int) -> c_int628     pub fn __wasilibc_fd_renumber(fd: c_int, newfd: c_int) -> c_int;
__wasilibc_unlinkat(fd: c_int, path: *const c_char) -> c_int629     pub fn __wasilibc_unlinkat(fd: c_int, path: *const c_char) -> c_int;
__wasilibc_rmdirat(fd: c_int, path: *const c_char) -> c_int630     pub fn __wasilibc_rmdirat(fd: c_int, path: *const c_char) -> c_int;
__wasilibc_find_relpath( path: *const c_char, abs_prefix: *mut *const c_char, relative_path: *mut *mut c_char, relative_path_len: usize, ) -> c_int631     pub fn __wasilibc_find_relpath(
632         path: *const c_char,
633         abs_prefix: *mut *const c_char,
634         relative_path: *mut *mut c_char,
635         relative_path_len: usize,
636     ) -> c_int;
__wasilibc_tell(fd: c_int) -> ::off_t637     pub fn __wasilibc_tell(fd: c_int) -> ::off_t;
__wasilibc_nocwd___wasilibc_unlinkat(dirfd: c_int, path: *const c_char) -> c_int638     pub fn __wasilibc_nocwd___wasilibc_unlinkat(dirfd: c_int, path: *const c_char) -> c_int;
__wasilibc_nocwd___wasilibc_rmdirat(dirfd: c_int, path: *const c_char) -> c_int639     pub fn __wasilibc_nocwd___wasilibc_rmdirat(dirfd: c_int, path: *const c_char) -> c_int;
__wasilibc_nocwd_linkat( olddirfd: c_int, oldpath: *const c_char, newdirfd: c_int, newpath: *const c_char, flags: c_int, ) -> c_int640     pub fn __wasilibc_nocwd_linkat(
641         olddirfd: c_int,
642         oldpath: *const c_char,
643         newdirfd: c_int,
644         newpath: *const c_char,
645         flags: c_int,
646     ) -> c_int;
__wasilibc_nocwd_symlinkat( target: *const c_char, dirfd: c_int, path: *const c_char, ) -> c_int647     pub fn __wasilibc_nocwd_symlinkat(
648         target: *const c_char,
649         dirfd: c_int,
650         path: *const c_char,
651     ) -> c_int;
__wasilibc_nocwd_readlinkat( dirfd: c_int, path: *const c_char, buf: *mut c_char, bufsize: usize, ) -> isize652     pub fn __wasilibc_nocwd_readlinkat(
653         dirfd: c_int,
654         path: *const c_char,
655         buf: *mut c_char,
656         bufsize: usize,
657     ) -> isize;
__wasilibc_nocwd_faccessat( dirfd: c_int, path: *const c_char, mode: c_int, flags: c_int, ) -> c_int658     pub fn __wasilibc_nocwd_faccessat(
659         dirfd: c_int,
660         path: *const c_char,
661         mode: c_int,
662         flags: c_int,
663     ) -> c_int;
__wasilibc_nocwd_renameat( olddirfd: c_int, oldpath: *const c_char, newdirfd: c_int, newpath: *const c_char, ) -> c_int664     pub fn __wasilibc_nocwd_renameat(
665         olddirfd: c_int,
666         oldpath: *const c_char,
667         newdirfd: c_int,
668         newpath: *const c_char,
669     ) -> c_int;
__wasilibc_nocwd_openat_nomode(dirfd: c_int, path: *const c_char, flags: c_int) -> c_int670     pub fn __wasilibc_nocwd_openat_nomode(dirfd: c_int, path: *const c_char, flags: c_int)
671         -> c_int;
__wasilibc_nocwd_fstatat( dirfd: c_int, path: *const c_char, buf: *mut stat, flags: c_int, ) -> c_int672     pub fn __wasilibc_nocwd_fstatat(
673         dirfd: c_int,
674         path: *const c_char,
675         buf: *mut stat,
676         flags: c_int,
677     ) -> c_int;
__wasilibc_nocwd_mkdirat_nomode(dirfd: c_int, path: *const c_char) -> c_int678     pub fn __wasilibc_nocwd_mkdirat_nomode(dirfd: c_int, path: *const c_char) -> c_int;
__wasilibc_nocwd_utimensat( dirfd: c_int, path: *const c_char, times: *const ::timespec, flags: c_int, ) -> c_int679     pub fn __wasilibc_nocwd_utimensat(
680         dirfd: c_int,
681         path: *const c_char,
682         times: *const ::timespec,
683         flags: c_int,
684     ) -> c_int;
__wasilibc_nocwd_opendirat(dirfd: c_int, path: *const c_char) -> *mut ::DIR685     pub fn __wasilibc_nocwd_opendirat(dirfd: c_int, path: *const c_char) -> *mut ::DIR;
__wasilibc_access(pathname: *const c_char, mode: c_int, flags: c_int) -> c_int686     pub fn __wasilibc_access(pathname: *const c_char, mode: c_int, flags: c_int) -> c_int;
__wasilibc_stat(pathname: *const c_char, buf: *mut stat, flags: c_int) -> c_int687     pub fn __wasilibc_stat(pathname: *const c_char, buf: *mut stat, flags: c_int) -> c_int;
__wasilibc_utimens( pathname: *const c_char, times: *const ::timespec, flags: c_int, ) -> c_int688     pub fn __wasilibc_utimens(
689         pathname: *const c_char,
690         times: *const ::timespec,
691         flags: c_int,
692     ) -> c_int;
__wasilibc_link(oldpath: *const c_char, newpath: *const c_char, flags: c_int) -> c_int693     pub fn __wasilibc_link(oldpath: *const c_char, newpath: *const c_char, flags: c_int) -> c_int;
__wasilibc_link_oldat( olddirfd: c_int, oldpath: *const c_char, newpath: *const c_char, flags: c_int, ) -> c_int694     pub fn __wasilibc_link_oldat(
695         olddirfd: c_int,
696         oldpath: *const c_char,
697         newpath: *const c_char,
698         flags: c_int,
699     ) -> c_int;
__wasilibc_link_newat( oldpath: *const c_char, newdirfd: c_int, newpath: *const c_char, flags: c_int, ) -> c_int700     pub fn __wasilibc_link_newat(
701         oldpath: *const c_char,
702         newdirfd: c_int,
703         newpath: *const c_char,
704         flags: c_int,
705     ) -> c_int;
__wasilibc_rename_oldat( olddirfd: c_int, oldpath: *const c_char, newpath: *const c_char, ) -> c_int706     pub fn __wasilibc_rename_oldat(
707         olddirfd: c_int,
708         oldpath: *const c_char,
709         newpath: *const c_char,
710     ) -> c_int;
__wasilibc_rename_newat( oldpath: *const c_char, newdirfd: c_int, newpath: *const c_char, ) -> c_int711     pub fn __wasilibc_rename_newat(
712         oldpath: *const c_char,
713         newdirfd: c_int,
714         newpath: *const c_char,
715     ) -> c_int;
716 
arc4random() -> u32717     pub fn arc4random() -> u32;
arc4random_buf(a: *mut c_void, b: size_t)718     pub fn arc4random_buf(a: *mut c_void, b: size_t);
arc4random_uniform(a: u32) -> u32719     pub fn arc4random_uniform(a: u32) -> u32;
720 }
721