simdjson/windows/dirent_portable.h

11 lines
262 B
C
Raw Normal View History

#ifndef SIMDJSON_DIRENT_PORTABLE_INC_
#define SIMDJSON_DIRENT_PORTABLE_INC_
#if (!defined(_WIN32) && !defined(_WIN64) && !(__MINGW32__) && !(__MINGW64__))
2020-01-08 07:41:57 +08:00
#include <dirent.h>
#else
2020-01-08 07:41:57 +08:00
#include "toni_ronnko_dirent.h"
#endif
#endif // SIMDJSON_DIRENT_PORTABLE_INC_