diff options
| author | Mattias Andrée <maandree@kth.se> | 2021-04-22 20:49:48 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2021-04-22 20:51:38 +0200 |
| commit | 77e516665f23b9cb7af864318c61582d91ab5870 (patch) | |
| tree | 50772907d8d9ce249e47e034455489e22185ac98 /common.h | |
| download | basic-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.h | 13 |
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> |
