fssh_api_wrapper: fix build on non-Haiku.

* I'm not sure why strings.h needs to be included before <new>, but it
wouldn't work otherwise.
This commit is contained in:
PulkoMandy 2015-01-14 10:15:15 +01:00
parent 6e35da8308
commit 98731302d8
2 changed files with 4 additions and 4 deletions

View File

@ -6,6 +6,10 @@
#define _FSSH_API_WRAPPER_H
#include <string.h>
#ifdef __cplusplus
#include <new>
#endif
#include <stdlib.h>
#include "fssh_dirent.h"

View File

@ -10,10 +10,6 @@
#if FS_SHELL
# include "fssh_api_wrapper.h"
# undef size_t
# include <new>
# define size_t fssh_size_t
# include "KOpenHashTable.h"
# include "list.h"
#else