aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/hexdump.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/hexdump.c b/src/lib/hexdump.c
index 2861d6321e..ca36ddee0e 100644
--- a/src/lib/hexdump.c
+++ b/src/lib/hexdump.c
@@ -14,11 +14,7 @@
#include <console/console.h>
#include <lib.h>
-
-static int isprint(int c)
-{
- return (c >= 32 && c <= 126);
-}
+#include <string.h>
void hexdump(const void *memory, size_t length)
{