mirror of
https://github.com/azahar-emu/ext-libressl-portable
synced 2025-11-06 23:20:09 +01:00
18 lines
232 B
C
18 lines
232 B
C
/*
|
|
* Public domain
|
|
* dirent.h compatibility shim
|
|
*/
|
|
|
|
#ifndef LIBCRYPTOCOMPAT_DIRENT_H
|
|
#define LIBCRYPTOCOMPAT_DIRENT_H
|
|
|
|
#ifdef _MSC_VER
|
|
#include <windows.h>
|
|
#include <dirent_msvc.h>
|
|
#else
|
|
#include_next <dirent.h>
|
|
#endif
|
|
|
|
#endif
|
|
|