Fix alignment issue
This commit is contained in:
20
mods/mod_c.c
Normal file
20
mods/mod_c.c
Normal 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
|
||||
};
|
||||
Reference in New Issue
Block a user