mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 20:41:39 -07:00
Move int includes to hydra-mod and add includes.
This makes the code compile on OSX.
This commit is contained in:
parent
ad8f77bbf1
commit
35ece53d3b
3 changed files with 13 additions and 8 deletions
|
@ -3,6 +3,14 @@
|
|||
|
||||
#include "hydra.h"
|
||||
|
||||
#ifdef __sun
|
||||
#include <sys/int_types.h>
|
||||
#elif defined(__FreeBSD__) || defined(__IBMCPP__) || defined(_AIX)
|
||||
#include <inttypes.h>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
extern char quiet;
|
||||
|
||||
extern void hydra_child_exit(int32_t code);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue