libultra/libc cleanup (#1757)

* libultra/libc cleanup

* Format

* Correct prototype for strchr

* Different prototypes for bzero, bcmp, bcopy under __GNUC__ to match builtin prototypes

* Correct alloca prototype
This commit is contained in:
Tharo
2024-12-14 02:28:22 +00:00
committed by GitHub
parent fc8d1165c8
commit 01a1b113b4
12 changed files with 263 additions and 251 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
#include "stddef.h"
const char* strchr(const char* s, int c);
char* strchr(const char* s, int c);
size_t strlen(const char* s);
void* memcpy(void* s1, const void* s2, size_t n);