mirror of
https://github.com/azahar-emu/ext-libressl-portable
synced 2025-11-06 23:20:09 +01:00
19 lines
257 B
C
19 lines
257 B
C
/* $OpenBSD$ */
|
|
|
|
#include <unistd.h>
|
|
|
|
#ifdef _MSC_VER
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
int
|
|
getpagesize(void) {
|
|
#ifdef _MSC_VER
|
|
SYSTEM_INFO system_info;
|
|
GetSystemInfo(&system_info);
|
|
return system_info.dwPageSize;
|
|
#else
|
|
return sysconf(_SC_PAGESIZE);
|
|
#endif
|
|
}
|