From 0c6f7ca5cb18c017d1138ff62726ade28ef26689 Mon Sep 17 00:00:00 2001 From: Hamish Coleman Date: Fri, 16 Jun 2023 08:14:36 +0100 Subject: [PATCH] iwyu: hexdump.c --- src/hexdump.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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;