added additional necessary includes
This commit is contained in:
parent
c783a129a0
commit
6b7ca2683e
2 changed files with 4 additions and 0 deletions
2
config.h
2
config.h
|
@ -1,6 +1,8 @@
|
|||
#ifndef CONFIG_H
|
||||
#define CONFIG_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
// Keybinds
|
||||
#define up_key 'k'
|
||||
#define down_key 'j'
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#ifndef SNAKE_H
|
||||
#define SNAKE_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#include "segment.h"
|
||||
#include "field.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue