123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363 |
- /* automatically generated by rust-bindgen */
- pub type wchar_t = libc::c_int;
- #[repr(C)]
- #[derive(Debug, Copy)]
- pub struct div_t {
- pub quot: libc::c_int,
- pub rem: libc::c_int,
- }
- impl Clone for div_t {
- fn clone(&self) -> Self {
- *self
- }
- }
- #[repr(C)]
- #[derive(Debug, Copy)]
- pub struct ldiv_t {
- pub quot: libc::c_long,
- pub rem: libc::c_long,
- }
- impl Clone for ldiv_t {
- fn clone(&self) -> Self {
- *self
- }
- }
- #[no_mangle]
- pub extern "C" fn abort() {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn abs(arg1: libc::c_int) -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn atexit(arg1: ::std::option::Option<unsafe extern "C" fn()>) -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn atof(arg1: *const libc::c_char) -> f64 {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn atoi(arg1: *const libc::c_char) -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn atol(arg1: *const libc::c_char) -> libc::c_long {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn bsearch(
- arg1: *const libc::c_void,
- arg2: *const libc::c_void,
- arg3: usize,
- arg4: usize,
- arg5: ::std::option::Option<
- unsafe extern "C" fn(arg1: *const libc::c_void,
- arg2: *const libc::c_void)
- -> libc::c_int,
- >,
- ) -> *mut libc::c_void {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn calloc(arg1: usize, arg2: usize) -> *mut libc::c_void {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn div(arg1: libc::c_int, arg2: libc::c_int) -> div_t {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn drand48() -> f64 {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn ecvt(
- arg1: f64,
- arg2: libc::c_int,
- arg3: *mut libc::c_int,
- arg4: *mut libc::c_int,
- ) -> *mut libc::c_char {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn erand48(arg1: *mut libc::c_ushort) -> f64 {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn exit(arg1: libc::c_int) {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn fcvt(
- arg1: f64,
- arg2: libc::c_int,
- arg3: *mut libc::c_int,
- arg4: *mut libc::c_int,
- ) -> *mut libc::c_char {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn free(arg1: *mut libc::c_void) {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn gcvt(arg1: f64, arg2: libc::c_int, arg3: *mut libc::c_char) -> *mut libc::c_char {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn getenv(arg1: *const libc::c_char) -> *mut libc::c_char {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn getsubopt(
- arg1: *mut *mut libc::c_char,
- arg2: *const *const libc::c_char,
- arg3: *mut *mut libc::c_char,
- ) -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn grantpt(arg1: libc::c_int) -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn initstate(
- arg1: libc::c_uint,
- arg2: *mut libc::c_char,
- arg3: usize,
- ) -> *mut libc::c_char {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn jrand48(arg1: *mut libc::c_ushort) -> libc::c_long {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn l64a(arg1: libc::c_long) -> *mut libc::c_char {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn labs(arg1: libc::c_long) -> libc::c_long {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn lcong48(arg1: *mut libc::c_ushort) {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn ldiv(arg1: libc::c_long, arg2: libc::c_long) -> ldiv_t {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn lrand48() -> libc::c_long {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn malloc(arg1: usize) -> *mut libc::c_void {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn mblen(arg1: *const libc::c_char, arg2: usize) -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn mbstowcs(arg1: *mut wchar_t, arg2: *const libc::c_char, arg3: usize) -> usize {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn mbtowc(
- arg1: *mut wchar_t,
- arg2: *const libc::c_char,
- arg3: usize,
- ) -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn mktemp(arg1: *mut libc::c_char) -> *mut libc::c_char {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn mkstemp(arg1: *mut libc::c_char) -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn mrand48() -> libc::c_long {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn nrand48(arg1: *mut libc::c_ushort) -> libc::c_long {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn ptsname(arg1: libc::c_int) -> *mut libc::c_char {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn putenv(arg1: *mut libc::c_char) -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn qsort(
- arg1: *mut libc::c_void,
- arg2: usize,
- arg3: usize,
- arg4: ::std::option::Option<
- unsafe extern "C" fn(arg1: *const libc::c_void,
- arg2: *const libc::c_void)
- -> libc::c_int,
- >,
- ) {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn rand() -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn rand_r(arg1: *mut libc::c_uint) -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn random() -> libc::c_long {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn realloc(arg1: *mut libc::c_void, arg2: usize) -> *mut libc::c_void {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn realpath(
- arg1: *const libc::c_char,
- arg2: *mut libc::c_char,
- ) -> *mut libc::c_char {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn seed48(arg1: *mut libc::c_ushort) -> libc::c_ushort {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn setkey(arg1: *const libc::c_char) {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn setstate(arg1: *const libc::c_char) -> *mut libc::c_char {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn srand(arg1: libc::c_uint) {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn srand48(arg1: libc::c_long) {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn srandom(arg1: libc::c_uint) {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn strtod(arg1: *const libc::c_char, arg2: *mut *mut libc::c_char) -> f64 {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn strtol(
- arg1: *const libc::c_char,
- arg2: *mut *mut libc::c_char,
- arg3: libc::c_int,
- ) -> libc::c_long {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn strtoul(
- arg1: *const libc::c_char,
- arg2: *mut *mut libc::c_char,
- arg3: libc::c_int,
- ) -> libc::c_ulong {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn system(arg1: *const libc::c_char) -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn ttyslot() -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn unlockpt(arg1: libc::c_int) -> libc::c_int {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn valloc(arg1: usize) -> *mut libc::c_void {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn wcstombs(arg1: *mut libc::c_char, arg2: *const wchar_t, arg3: usize) -> usize {
- unimplemented!();
- }
- #[no_mangle]
- pub extern "C" fn wctomb(arg1: *mut libc::c_char, arg2: wchar_t) -> libc::c_int {
- unimplemented!();
- }
|