added additional necessary includes

This commit is contained in:
Noah Swerhun 2021-09-18 22:22:04 -05:00
parent c783a129a0
commit 6b7ca2683e
2 changed files with 4 additions and 0 deletions

View file

@ -1,6 +1,8 @@
#ifndef CONFIG_H
#define CONFIG_H
#include <stddef.h>
// Keybinds
#define up_key 'k'
#define down_key 'j'

View file

@ -1,6 +1,8 @@
#ifndef SNAKE_H
#define SNAKE_H
#include <stddef.h>
#include "segment.h"
#include "field.h"