Replace DARWIN macro with __APPLE__
[hashcat.git] / src / hashcat.c
index 59e682a..0049333 100644 (file)
@@ -6,7 +6,11 @@
  * License.....: MIT
  */
 
-#if defined(DARWIN) || defined(__FreeBSD__)
+#ifdef __APPLE__
+#include <stdio.h>
+#endif
+
+#ifdef __FreeBSD__
 #include <stdio.h>
 #endif