menu_navigation.h - include unistd.h, stddef.h for definitions

of size_t and ssize_t
This commit is contained in:
twinaphex 2015-09-02 12:45:58 +02:00
parent 634c24ac0b
commit ed7c31f173

View File

@ -17,6 +17,13 @@
#ifndef _MENU_NAVIGATION_H
#define _MENU_NAVIGATION_H
#include <stddef.h>
#ifdef _WIN32
#include <direct.h>
#else
#include <unistd.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif