summaryrefslogtreecommitdiff
path: root/soh/include/libc/stdlib.h
blob: 00418278af4c2785b337245245d3205b2bd951fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef STDLIB_H
#define STDLIB_H

#include "ultra64.h"

#if 0

#ifndef __cplusplus
typedef struct lldiv_t {
    s64 quot;
    s64 rem;
} lldiv_t;

typedef struct ldiv_t {
    s32 quot;
    s32 rem;
} ldiv_t;
#endif
#endif

#endif