mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2025-04-02 10:42:21 -04:00
10 lines
179 B
C
10 lines
179 B
C
#ifndef _ERROR_H_
|
|
#define _ERROR_H_
|
|
|
|
/* Function prototypes */
|
|
void error_init(void);
|
|
void error_shutdown(void);
|
|
void error(char *format, ...);
|
|
|
|
#endif /* _ERROR_H_ */
|
|
|