1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-11 16:21:12 +00:00

Make POSIX limits.h explicit declaration

This commit is contained in:
Unix-Ninja 2016-06-27 08:18:50 -04:00
parent 2188a01ae9
commit d8bb00cf77

View File

@ -38,6 +38,7 @@
#include <semaphore.h> #include <semaphore.h>
#include <dlfcn.h> #include <dlfcn.h>
#include <pwd.h> #include <pwd.h>
#include <limits.h>
#ifdef LINUX #ifdef LINUX
#include <termio.h> #include <termio.h>
@ -48,7 +49,6 @@
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <mach-o/dyld.h> #include <mach-o/dyld.h>
#include <mach/mach.h> #include <mach/mach.h>
#include <limits.h>
#endif #endif
typedef void *OCL_LIB; typedef void *OCL_LIB;