mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 10:25:07 +01:00
14 lines
223 B
C
14 lines
223 B
C
|
|
#ifndef _ERROR_H_
|
|
#define _ERROR_H_
|
|
|
|
/* Global variables */
|
|
FILE *error_log;
|
|
|
|
/* Function prototypes */
|
|
void error_init(void);
|
|
void error_shutdown(void);
|
|
void error(char *format, ...);
|
|
|
|
#endif /* _ERROR_H_ */
|