Add missing unload to include
This commit is contained in:
@ -3,6 +3,7 @@
|
||||
#define MAIN_H_
|
||||
|
||||
void load(void);
|
||||
void unload(void);
|
||||
void self_unload(void);
|
||||
|
||||
#endif /* MAIN_H_ */
|
||||
|
@ -45,7 +45,7 @@ void load(void) {
|
||||
}
|
||||
|
||||
__attribute__((destructor)) /* Entry point when unloaded */
|
||||
void unload() {
|
||||
void unload(void) {
|
||||
if (loaded) {
|
||||
/* TODO: Remove our cvars */
|
||||
|
||||
|
Reference in New Issue
Block a user