mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-04 09:55:08 +01:00
11 lines
179 B
C
11 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_ */
|
|
|