Fix alignment issue

This commit is contained in:
2025-03-31 18:43:36 +02:00
parent 336ef95c3f
commit 389eecfd73
6 changed files with 42 additions and 11 deletions

View File

@@ -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
};