mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-07-31 23:58:38 -04:00
Decompile lldiv and ldiv
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user