menu_navigation.h - include unistd.h, stddef.h for definitions
of size_t and ssize_t
This commit is contained in:
parent
634c24ac0b
commit
ed7c31f173
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue