tictactoe

Tic Tac Toe on the terminal using ANSI Escape Codes
Index Commits Files Refs README LICENSE
commit f5146a6d7b18bfbadb586bb05ab652ac8d4b18a7
parent c000e02c9bec680870738140537f6fc4b23fe60f
Author: Martin Kloeckner <mjkloeckner@gmail.com>
Date:   Mon,  1 Apr 2024 01:00:19 -0300

Include `cstdlib` because of `EXIT_FAILURE` macro

Diffstat:
Mtictactoe.cpp | 1+
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/tictactoe.cpp b/tictactoe.cpp
@@ -1,4 +1,5 @@
 #include <iostream>
+#include <cstdlib>
 #include <csignal>
 #include <termios.h>
 #include <string>