Logo
Explore Help
Sign In
hackern64/HackerOoT
0
0
Fork 0
You've already forked HackerOoT
mirror of https://github.com/HackerN64/HackerOoT.git synced 2026-01-21 10:37:37 -08:00
Code Issues Packages Projects Releases Wiki Activity
Files
main
HackerOoT/include/libc/stdlib.h

18 lines
265 B
C
Raw Permalink Normal View History

Fix all headers to comply with C standard (#957) * Fix all headers to comply with C standard * fix a file in libultra * Update include/stdbool.h Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com> * Update stdbool.h * Update z64animation.h Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com>
2021-09-15 19:24:19 -04:00
#ifndef STDLIB_H
#define STDLIB_H
First proper commit.
2020-03-17 00:31:30 -04:00
Partially format header files
2020-03-22 22:50:11 +01:00
typedef struct lldiv_t {
libc cleanup (#1568) * libc cleanup * Suggested changes, small alloca tweak * Remove printf include
2023-10-27 15:06:44 +01:00
long long quot;
long long rem;
First proper commit.
2020-03-17 00:31:30 -04:00
} lldiv_t;
Partially format header files
2020-03-22 22:50:11 +01:00
typedef struct ldiv_t {
libc cleanup (#1568) * libc cleanup * Suggested changes, small alloca tweak * Remove printf include
2023-10-27 15:06:44 +01:00
long quot;
long rem;
First proper commit.
2020-03-17 00:31:30 -04:00
} ldiv_t;
libc cleanup (#1568) * libc cleanup * Suggested changes, small alloca tweak * Remove printf include
2023-10-27 15:06:44 +01:00
ldiv_t ldiv(long num, long denom);
lldiv_t lldiv(long long num, long long denom);
First proper commit.
2020-03-17 00:31:30 -04:00
#endif
Reference in New Issue Copy Permalink
Powered by Gitea Page: 461ms Template: 22ms
English
English
Licenses API