Replace all #ifdef with #if defined (...) for convention

This commit is contained in:
jsteube
2016-09-07 22:29:57 +02:00
parent eb00cd959f
commit 9eb47153d4
37 changed files with 182 additions and 170 deletions
+4 -4
View File
@@ -9,21 +9,21 @@
#include <stdlib.h>
#include <stdarg.h>
#ifdef _POSIX
#if defined (_POSIX)
#include <pthread.h>
#include <sys/sysctl.h>
#endif // _POSIX
#ifdef __APPLE__
#if defined (__APPLE__)
#include <mach-o/dyld.h>
#include <mach/mach.h>
#endif // __APPLE__
#ifdef _WIN
#if defined (_WIN)
#include <windows.h>
#endif // _WIN
#ifdef __APPLE__
#if defined (__APPLE__)
typedef struct cpu_set
{
uint32_t count;