pikmin2/include/stl/stdlib.h
Amber Brault 46d0da417c
Metrowerks overhaul (#164)
* Metrowerks overhaul

-Make MSL_C match under inline deferred
-Overhaul metrowerks header files

* repair file-end newlines

* formatting

clang format is happy now. some questionable formatting choices, especially strtoul.h

* fix two ending newlines with extensionless files

* More formatting

* Match alloc.c

* Match mem_funcs.c

* Fix makefile

* Make Runtime and TRK match under deferred

* hopefully fix the configure script

---------

Co-authored-by: EpochFlame <jupiterror@gmail.com>
2023-04-22 02:37:22 -04:00

21 lines
524 B
C

#ifndef _STDLIB_H
#define _STDLIB_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif // ifdef __cplusplus
#include "PowerPC_EABI_Support/MSL_C/MSL_Common/alloc.h"
#include "PowerPC_EABI_Support/MSL_C/MSL_Common/arith.h"
#include "PowerPC_EABI_Support/MSL_C/MSL_Common/mbstring.h"
#include "PowerPC_EABI_Support/MSL_C/MSL_Common/rand.h"
#include "PowerPC_EABI_Support/MSL_C/MSL_Common/strtold.h"
#include "PowerPC_EABI_Support/MSL_C/MSL_Common/strtoul.h"
#ifdef __cplusplus
};
#endif // ifdef __cplusplus
#endif