mirror of https://github.com/ctnlaring/sm64
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
249 B
19 lines
249 B
#ifndef _STDLIB_H_
|
|
#define _STDLIB_H_
|
|
|
|
typedef struct lldiv_t
|
|
{
|
|
long long quot;
|
|
long long rem;
|
|
} lldiv_t;
|
|
|
|
typedef struct ldiv_t
|
|
{
|
|
long quot;
|
|
long rem;
|
|
} ldiv_t;
|
|
|
|
lldiv_t lldiv(long long, long long);
|
|
ldiv_t ldiv(long, long);
|
|
|
|
#endif
|