Fix alignment issue
This commit is contained in:
10
mods/mod_b.c
10
mods/mod_b.c
@@ -2,17 +2,19 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
static int mod_b_init(void) {
|
||||
static int init(void) {
|
||||
printf("top kek MODB!\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int mod_b_done(void) {
|
||||
static int done(void) {
|
||||
printf("MODB do be done!\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
HAX_MOD(mod_b) = {
|
||||
.init = mod_b_init,
|
||||
.done = mod_b_done
|
||||
.name = "b",
|
||||
.priority = 3,
|
||||
.init = init,
|
||||
.done = done
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user