mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-26 18:28:22 -05:00
16 lines
219 B
C
Executable File
16 lines
219 B
C
Executable File
/*
|
|
* 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
|