pinboid/src/main.c

12 lines
153 B
C
Raw Normal View History

2020-11-08 02:34:04 +01:00
#include <init.h>
#include <game.h>
2020-11-07 16:30:41 +01:00
#include <stdlib.h>
int main(void)
{
2020-11-08 02:34:04 +01:00
if (system_init() || game())
return EXIT_FAILURE;
2020-11-07 16:30:41 +01:00
return 0;
}