malloc/calloc/free and minimal allocator testing
[lugburz] / src / game.c
1 #include <stdio.h>
2 #include <string.h>
3 #include "game.h"
4 #include "gfx.h"
5
6 int game_init(void)
7 {
8         return 0;
9 }
10
11 void game_draw(void)
12 {
13 }