kernel32: Consolidate some duplicate variable declarations.

This commit is contained in:
Ken Thomases 2014-02-16 20:43:35 -06:00 committed by Alexandre Julliard
parent c91dd24098
commit 6953189271
1 changed files with 5 additions and 5 deletions

View File

@ -1146,12 +1146,12 @@ BOOL WINAPI GlobalMemoryStatusEx( LPMEMORYSTATUSEX lpmemex )
SYSTEM_INFO si;
#ifdef linux
FILE *f;
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
unsigned long val;
int mib[2];
size_t size_sys;
#elif defined(__APPLE__)
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__APPLE__)
#ifdef __APPLE__
unsigned int val;
#else
unsigned long val;
#endif
int mib[2];
size_t size_sys;
#elif defined(sun)