mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-04-24 14:58:34 -05:00
14 lines
300 B
C
14 lines
300 B
C
#ifndef POKEHEARTGOLD_ERROR_HANDLING_H
|
|
#define POKEHEARTGOLD_ERROR_HANDLING_H
|
|
|
|
/*
|
|
* void GF_AssertFail(void)
|
|
*
|
|
* Called when an assertion fails.
|
|
* Do not use this directly.
|
|
* Instead, use the GF_ASSERT macro defined above.
|
|
*/
|
|
void GF_AssertFail(void);
|
|
|
|
#endif // POKEHEARTGOLD_ERROR_HANDLING_H
|