From ed7c31f173e0de7009dabc7c2b3b9f356b816d8b Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 2 Sep 2015 12:45:58 +0200 Subject: [PATCH] menu_navigation.h - include unistd.h, stddef.h for definitions of size_t and ssize_t --- menu/menu_navigation.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/menu/menu_navigation.h b/menu/menu_navigation.h index a60497eaa5..40179e7b15 100644 --- a/menu/menu_navigation.h +++ b/menu/menu_navigation.h @@ -17,6 +17,13 @@ #ifndef _MENU_NAVIGATION_H #define _MENU_NAVIGATION_H +#include +#ifdef _WIN32 +#include +#else +#include +#endif + #ifdef __cplusplus extern "C" { #endif