diff options
author | HampusM <hampus@hampusmat.com> | 2022-01-07 12:44:22 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-01-07 12:44:22 +0100 |
commit | 2876d7efdeac80085a04b8f1c509065bf323f70e (patch) | |
tree | 9d7319bb3b8dec6ab58d90486a0515d90160481d /src/maze.c | |
parent | be8f26b069de778474eb634dcf3f53f5ec133002 (diff) |
fix: add missing includes
Diffstat (limited to 'src/maze.c')
-rw-r--r-- | src/maze.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4,6 +4,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <stdint.h> int is_pos_empty(Grid grid, Position pos) { |