Files
bfbb/include/CodeWarrior/stdlib.h
T
mattbruv 97fd26f7eb Decomp a bunch of zEntPlayer functions (#32)
* add cache to optimize pragma processing

* bbowlwindup

* bbowlcheck

* bbowltossendcb

* recoverwalkcheck

* BbowlRecoverRunCheck

* anotha few

* finish duplicates

* refactor

* start goocheck

* almost do goocheck

* almost goodeathcb

* Hit01Check

* hit01cb

* hit checks

* remove decomp'ed functions

* oopsie

* let's be politically correct

* politically correct header file

* matched 2 close functions after figuring out gotcha

* xIni

* string

* float

* fixes

Co-authored-by: seilweiss <32021834+seilweiss@users.noreply.github.com>
2020-10-29 18:25:06 -05:00

16 lines
192 B
C

#ifndef _MSL_STDLIB
#define _MSL_STDLIB
#ifdef __cplusplus
extern "C" {
#endif
int rand(void);
int atoi(const char* nptr);
double atof(const char* nptr);
#ifdef __cplusplus
}
#endif
#endif