diff --git a/src/hexdump.c b/src/hexdump.c index a9cbd00..3692a85 100644 --- a/src/hexdump.c +++ b/src/hexdump.c @@ -16,10 +16,11 @@ * */ -#include -#include "n2n.h" -#include "hexdump.h" +#include // for uint8_t +#include // for fprintf, FILE +#include "hexdump.h" // for fhexdump + void fhexdump(unsigned int display_addr, void *in, int size, FILE *stream) { uint8_t *p = in;