summaryrefslogtreecommitdiff
path: root/soh/include/libc/stdlib.h
blob: 9028d104deeb053b4fb334e3816e1d0e23a9aaa6 (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 <libultraship/libultra.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