lib/hexdump: Drop redundant isprint() implementation

Change-Id: I23e2d89274553cbc75e42f0420a1a84d4cec4340
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32739
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
Nico Huber 2019-05-10 19:17:31 +02:00 committed by Patrick Georgi
parent 554e55b0f0
commit ac6bf7dc12
1 changed files with 1 additions and 5 deletions

View File

@ -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)
{