1
0
mirror of https://github.com/blawar/ooot.git synced 2024-07-04 18:13:37 +00:00
ooot/include/libc.bak/stdlib.h
2022-02-14 10:56:16 -05:00

17 lines
159 B
C

#ifndef STDLIB_H
#define STDLIB_H
#include "ultra64.h"
struct lldiv_t {
s64 quot;
s64 rem;
};
struct ldiv_t {
s32 quot;
s32 rem;
};
#endif