Organize libc and libm files (#1499)

* memmove

* strcpy

* strcmp

* memset

* fmodf

* fix some missing includes

* Remove libc header dependencies on libultra

* fix

* review
This commit is contained in:
Anghelo Carvajal
2023-11-27 23:01:14 -03:00
committed by GitHub
parent 2fdcdd91b3
commit 7649cd309a
22 changed files with 77 additions and 59 deletions
+3
View File
@@ -22,11 +22,14 @@ typedef volatile s64 vs64;
typedef float f32;
typedef double f64;
#if !defined(_SIZE_T)
#define _SIZE_T
#if defined(_MIPS_SZLONG) && (_MIPS_SZLONG == 64)
typedef unsigned long size_t;
#else
typedef unsigned int size_t;
#endif
#endif
#ifndef NULL
#define NULL ((void*)0)