mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-11 21:34:25 -05:00
14 lines
299 B
C
14 lines
299 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
|