From cc0f4e3cf5f7a1fdc891df6bbef54fd6f789593b Mon Sep 17 00:00:00 2001 From: Christian Kroll Date: Sat, 31 Oct 2009 15:13:53 +0000 Subject: [PATCH] preparations for Bastet --- games/tetris/bast.c | 6 ++++++ games/tetris/bast.h | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 games/tetris/bast.c create mode 100644 games/tetris/bast.h diff --git a/games/tetris/bast.c b/games/tetris/bast.c new file mode 100644 index 0000000..4eb1453 --- /dev/null +++ b/games/tetris/bast.c @@ -0,0 +1,6 @@ +#include "bast.h" + +int bla() +{ + return 0; +} diff --git a/games/tetris/bast.h b/games/tetris/bast.h new file mode 100644 index 0000000..4aabddc --- /dev/null +++ b/games/tetris/bast.h @@ -0,0 +1,6 @@ +#ifndef BAST_H_ +#define BAST_H_ + +int bla(); + +#endif /* BAST_H_ */