mirror of
https://github.com/azahar-emu/ext-libressl-portable
synced 2025-11-07 07:30:06 +01:00
16 lines
219 B
C
16 lines
219 B
C
/*
|
|
* Public domain
|
|
* sys/param.h compatibility shim
|
|
*/
|
|
|
|
#ifndef LIBCRYPTOCOMPAT_SYS_PARAM_H
|
|
#define LIBCRYPTOCOMPAT_SYS_PARAM_H
|
|
|
|
#ifdef _MSC_VER
|
|
#include <winsock2.h>
|
|
#else
|
|
#include_next <sys/param.h>
|
|
#endif
|
|
|
|
#endif
|