Fix utf8rewind compilation with GCC

This commit is contained in:
Vincent Herbet 2017-10-14 14:25:21 +02:00 committed by GitHub
parent 0689c664d7
commit 5a2d940631

View File

@ -69,6 +69,12 @@
#include <string.h> #include <string.h>
#include <wchar.h> #include <wchar.h>
#if defined(LINUX) || defined(OSX)
#include <strings.h>
#include <unistd.h>
#include <sys/types.h>
#endif
/*! /*!
\addtogroup version \addtogroup version
\{ \{
@ -1867,4 +1873,4 @@ UTF8_API size_t utf8iscategory(const char* input, size_t inputSize, size_t flags
\} \}
*/ */
#endif /* _UTF8REWIND_H_ */ #endif /* _UTF8REWIND_H_ */