summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2021-11-25 08:56:52 -0500
committerRobby Zambito <contact@robbyzambito.me>2021-11-25 08:56:52 -0500
commitca2a01f92e6c62aaa926edb22f5cd9f8259244c8 (patch)
tree60d09fa47419f2178a63b25db3b015956f8bc4e4
parent2e7d4399fd3c3c4a31fd7c673037701232dd259f (diff)
Add empty statements to supress unused waring
We will use these values eventually.
-rw-r--r--cmd/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/main.c b/cmd/main.c
index abb433f..8b3e521 100644
--- a/cmd/main.c
+++ b/cmd/main.c
@@ -26,6 +26,8 @@
#include "othello.h"
int main(int argc, char **argv) {
+ (void)argc;
+ (void)argv;
enum player_color board[8][8];
initialize_board(board);