diff options
| author | Josh Ferrell <josh@vector35.com> | 2025-07-02 16:01:33 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2025-07-03 14:09:18 -0400 |
| commit | b145f116a1f51dcdb7e47bb0f1fa069c643f1712 (patch) | |
| tree | 6bcdafd57695b267f7fb6bd1f3aecb5acccd7cfc /arch/mips | |
| parent | f4d1bae870ac04bb1b1392c6b7d173aa7e079d5e (diff) | |
Fix compilation with newer clang/gcc versions
Diffstat (limited to 'arch/mips')
| -rw-r--r-- | arch/mips/mips/test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/mips/mips/test.c b/arch/mips/mips/test.c index b7cb069b..339126e0 100644 --- a/arch/mips/mips/test.c +++ b/arch/mips/mips/test.c @@ -10,6 +10,10 @@ b mips_disassemble #include <stdint.h> #include <inttypes.h> +#ifndef WIN32 +#include <arpa/inet.h> +#endif + #include "mips.h" int disassemble(uint32_t insword, uint64_t address, MipsVersion version, int flags, char *result) |
