/* @(#)root/clib:$Name: $:$Id: getpagesize.c,v 1.1.1.1 2000/05/16 17:00:43 rdm Exp $ */ /* Author: */ #ifdef WIN32 #include #include "mmalloc.h" int getpagesize() { SYSTEM_INFO siSysInfo; /* struct for hardware information */ /* Copy the hardware information to the SYSTEM_INFO structure. */ GetSystemInfo(&siSysInfo); return siSysInfo.dwPageSize; } #else #ifndef __GNUC__ /* Prevent "empty translation unit" warnings. */ #include #endif #endif