mirror of
https://github.com/raphnet/gc_n64_usb-v3
synced 2024-12-22 07:18:52 -05:00
17 lines
285 B
C
17 lines
285 B
C
|
#ifndef _stkchk_h__
|
||
|
#define _stkchk_h__
|
||
|
|
||
|
#undef STKCHK_WITH_STATUS_CHECK
|
||
|
|
||
|
#ifdef STKCHK_WITH_STATUS_CHECK
|
||
|
#define stkcheck() stkchk(__FUNCTION__);
|
||
|
void stkchk(const char *label);
|
||
|
#else
|
||
|
#define stkcheck()
|
||
|
#endif
|
||
|
|
||
|
void stkchk_init(void);
|
||
|
char stkchk_verify(void);
|
||
|
|
||
|
#endif // _stkchk_h__
|