summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-04-22 20:49:48 +0200
committerMattias Andrée <maandree@kth.se>2021-04-22 20:51:38 +0200
commit77e516665f23b9cb7af864318c61582d91ab5870 (patch)
tree50772907d8d9ce249e47e034455489e22185ac98 /common.h
downloadbasic-games-77e516665f23b9cb7af864318c61582d91ab5870.tar.gz
basic-games-77e516665f23b9cb7af864318c61582d91ab5870.tar.bz2
basic-games-77e516665f23b9cb7af864318c61582d91ab5870.tar.xz
First commit, with implementation of tic-tac-toe
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--common.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/common.h b/common.h
new file mode 100644
index 0000000..8b56f54
--- /dev/null
+++ b/common.h
@@ -0,0 +1,13 @@
+/* See LICENSE file for copyright and license details. */
+#ifdef MULTICALL_BINARY
+# define LIBSIMPLY_CONFIG_MULTICALL_BINARY
+#endif
+
+#include <libsimple.h>
+#include <libsimple-arg.h>
+#include <libterminput.h>
+
+#include <sys/random.h>
+#include <sys/timerfd.h>
+#include <sys/timex.h>
+#include <termios.h>