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

20
mods/mod_c.c Normal file
View File

@@ -0,0 +1,20 @@
#include "haxcc.h"
#include <stdio.h>
static int init(void) {
printf("top kek!\n");
return 0;
}
static int done(void) {
printf("meow !\n");
return 0;
}
HAX_MOD(mod_c) = {
.name = "c",
.priority = 2,
.init = init,
.done = done
};