2020-06-30 22:19:37 +08:00
|
|
|
#ifndef SIMDJSON_DIRENT_PORTABLE_INC_
|
|
|
|
#define SIMDJSON_DIRENT_PORTABLE_INC_
|
2018-12-31 10:00:19 +08:00
|
|
|
|
2020-06-30 09:10:54 +08:00
|
|
|
#if (!defined(_WIN32) && !defined(_WIN64) && !(__MINGW32__) && !(__MINGW64__))
|
2020-01-08 07:41:57 +08:00
|
|
|
#include <dirent.h>
|
2018-12-31 10:00:19 +08:00
|
|
|
#else
|
2020-01-08 07:41:57 +08:00
|
|
|
#include "toni_ronnko_dirent.h"
|
2018-12-31 10:00:19 +08:00
|
|
|
#endif
|
|
|
|
|
2020-06-30 22:19:37 +08:00
|
|
|
#endif // SIMDJSON_DIRENT_PORTABLE_INC_
|