1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 12:54:51 +00:00
oot/include/libc/stdlib.h

17 lines
190 B
C
Raw Normal View History

#ifndef STDLIB_H
#define STDLIB_H
2020-03-17 04:31:30 +00:00
#include "ultra64.h"
2020-03-22 21:50:11 +00:00
typedef struct lldiv_t {
s64 quot;
s64 rem;
2020-03-17 04:31:30 +00:00
} lldiv_t;
2020-03-22 21:50:11 +00:00
typedef struct ldiv_t {
s32 quot;
s32 rem;
2020-03-17 04:31:30 +00:00
} ldiv_t;
#endif