mirror of
https://github.com/sonicdcer/sf64.git
synced 2025-02-17 03:18:08 +00:00
stdlib.h
This commit is contained in:
parent
a105c1e099
commit
1a9167437a
28
include/libc/stdlib.h
Normal file
28
include/libc/stdlib.h
Normal file
@ -0,0 +1,28 @@
|
||||
#ifndef LIBC_STDLIB_H
|
||||
#define LIBC_STDLIB_H
|
||||
|
||||
#include "libc/stddef.h"
|
||||
|
||||
typedef struct {
|
||||
/* 0x0 */ int quot;
|
||||
/* 0x4 */ int rem;
|
||||
} div_t;
|
||||
|
||||
typedef struct {
|
||||
/* 0x0 */ long quot;
|
||||
/* 0x4 */ long rem;
|
||||
} ldiv_t;
|
||||
|
||||
typedef struct {
|
||||
/* 0x0 */ long long quot;
|
||||
/* 0x8 */ long long rem;
|
||||
} lldiv_t;
|
||||
|
||||
typedef int ssize_t;
|
||||
|
||||
typedef long wchar_t;
|
||||
|
||||
ldiv_t ldiv(long numer, long denom);
|
||||
lldiv_t lldiv(long long numer, long long denom);
|
||||
|
||||
#endif /* STDLIB_H */
|
Loading…
x
Reference in New Issue
Block a user