Decompile lldiv and ldiv

This commit is contained in:
Ryan Dwyer
2021-01-25 17:58:29 +10:00
parent d951c64c1a
commit 48a00e50b3
7 changed files with 54 additions and 140 deletions
-9
View File
@@ -1,9 +0,0 @@
#ifndef _IN_LIB_LIB_4A680_H
#define _IN_LIB_LIB_4A680_H
#include <ultra64.h>
#include "types.h"
u32 func0004a680(void);
u32 func0004a780(void);
#endif
+19
View File
@@ -0,0 +1,19 @@
#ifndef _IN_LIB_LIBC_LDIV_H
#define _IN_LIB_LIBC_LDIV_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 num, long long denom);
ldiv_t ldiv(long num, long denom);
#endif