mirror of https://github.com/zeldaret/oot.git
include libc headers without libc/ prefix
This commit is contained in:
parent
d059b2e55a
commit
3285da57dc
|
@ -1,7 +1,7 @@
|
|||
#ifndef SOUNDFONT_FILE_H
|
||||
#define SOUNDFONT_FILE_H
|
||||
|
||||
#include "libc/stdbool.h"
|
||||
#include "stdbool.h"
|
||||
#include "alignment.h"
|
||||
#include "attributes.h"
|
||||
#include "z64audio.h"
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#ifndef INFLATE_H
|
||||
#define INFLATE_H
|
||||
|
||||
#include "libc/stddef.h"
|
||||
#include "libc/stdint.h"
|
||||
#include "stddef.h"
|
||||
#include "stdint.h"
|
||||
#include "ultra64.h"
|
||||
|
||||
void gzip_decompress(uintptr_t romStart, u8* dst, size_t size);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef IS_DEBUG_H
|
||||
#define IS_DEBUG_H
|
||||
|
||||
#include "libc/stddef.h"
|
||||
#include "stddef.h"
|
||||
#include "attributes.h"
|
||||
|
||||
#if DEBUG_FEATURES
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include "ultra64.h"
|
||||
#include "versions.h"
|
||||
#include "z64math.h"
|
||||
#include "libc/assert.h"
|
||||
#include "assert.h"
|
||||
|
||||
#define MAX_CHANNELS_PER_BANK 3
|
||||
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
#ifndef ULTRA64_H
|
||||
#define ULTRA64_H
|
||||
|
||||
#include "libc/assert.h"
|
||||
#include "libc/math.h"
|
||||
#include "libc/stdarg.h"
|
||||
#include "libc/stdbool.h"
|
||||
#include "libc/stddef.h"
|
||||
#include "libc/stdint.h"
|
||||
#include "libc/stdlib.h"
|
||||
#include "libc/string.h"
|
||||
#include "assert.h"
|
||||
#include "math.h"
|
||||
#include "stdarg.h"
|
||||
#include "stdbool.h"
|
||||
#include "stddef.h"
|
||||
#include "stdint.h"
|
||||
#include "stdlib.h"
|
||||
#include "string.h"
|
||||
|
||||
#include "ultra64/ultratypes.h"
|
||||
#include "unk.h"
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#ifndef YAZ0_H
|
||||
#define YAZ0_H
|
||||
|
||||
#include "libc/stddef.h"
|
||||
#include "libc/stdint.h"
|
||||
#include "stddef.h"
|
||||
#include "stdint.h"
|
||||
#include "ultra64.h"
|
||||
|
||||
void Yaz0_Decompress(uintptr_t romStart, u8* dst, size_t size);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef Z64SS_SRAM_H
|
||||
#define Z64SS_SRAM_H
|
||||
|
||||
#include "libc/stddef.h"
|
||||
#include "stddef.h"
|
||||
#include "ultra64/ultratypes.h"
|
||||
|
||||
void SsSram_Init(s32 addr, u8 handleType, u8 handleDomain, u8 handleLatency, u8 handlePageSize, u8 handleRelDuration,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef Z_LIB_H
|
||||
#define Z_LIB_H
|
||||
|
||||
#include "libc/stddef.h"
|
||||
#include "stddef.h"
|
||||
#include "libu64/pad.h"
|
||||
#include "z64math.h"
|
||||
#include "color.h"
|
||||
|
|
|
@ -98,8 +98,8 @@
|
|||
#include "inflate.h"
|
||||
|
||||
#include "ultra64/ultratypes.h"
|
||||
#include "libc/stddef.h"
|
||||
#include "libc/stdint.h"
|
||||
#include "stddef.h"
|
||||
#include "stdint.h"
|
||||
#include "alignment.h"
|
||||
#include "attributes.h"
|
||||
#include "z64dma.h"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include "ultra64/leo.h"
|
||||
#include "ultra64/leoappli.h"
|
||||
#include "ultra64/leodrive.h"
|
||||
#include "libc/stdint.h"
|
||||
#include "stdint.h"
|
||||
#include "attributes.h"
|
||||
|
||||
#include "ultra64.h"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include "ultra64/leo.h"
|
||||
#include "ultra64/leoappli.h"
|
||||
#include "ultra64/leodrive.h"
|
||||
#include "libc/stdint.h"
|
||||
#include "stdint.h"
|
||||
#include "attributes.h"
|
||||
|
||||
#include "ultra64.h"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "libc/stddef.h"
|
||||
#include "stddef.h"
|
||||
|
||||
int strcmp(const char* s, const char* t) {
|
||||
while (*s == *t) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef FILE_SELECT_H
|
||||
#define FILE_SELECT_H
|
||||
|
||||
#include "libc/stddef.h"
|
||||
#include "stddef.h"
|
||||
#include "ultra64.h"
|
||||
#include "gfx.h"
|
||||
#include "versions.h"
|
||||
|
|
Loading…
Reference in New Issue