summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/util.c b/util.c
index 4041511..aa4a737 100644
--- a/util.c
+++ b/util.c
@@ -16,7 +16,6 @@ static bool util_is_power_of_2(u64 x) {
}
static void util_zero_memory(void *mem, size_t size) {
- extern void *memset(void *s, int c, size_t n);
memset(mem, 0, size);
}