Add missing unload to include

This commit is contained in:
8dcc 2023-08-01 19:53:43 +02:00
parent b7c6e74dd4
commit 29a40f63da
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
#define MAIN_H_
void load(void);
void unload(void);
void self_unload(void);
#endif /* MAIN_H_ */

View File

@ -45,7 +45,7 @@ void load(void) {
}
__attribute__((destructor)) /* Entry point when unloaded */
void unload() {
void unload(void) {
if (loaded) {
/* TODO: Remove our cvars */