1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-15 20:39:17 +00:00

Move the system include where it belongs to

This commit is contained in:
Jens Steube 2018-11-04 14:26:19 +01:00
parent 9baf728fe7
commit 3eab677bdf
2 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,7 @@
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include <limits.h> #include <limits.h>
#include <inttypes.h>
/** /**
* zero hashes shutcut * zero hashes shutcut

View File

@ -3,7 +3,6 @@
* License.....: MIT * License.....: MIT
*/ */
#include <inttypes.h>
#include "common.h" #include "common.h"
#include "types.h" #include "types.h"
#include "bitops.h" #include "bitops.h"