summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-01-04 17:18:15 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-01-04 17:18:15 -0500
commit306505e714b7caf146b8ec8386b407d57555563d (patch)
tree9cebf2eaf83899a7aa80fff70dd4d56cf4aa29d6 /util.c
parent16ab3629d435d52539b6345d79433e27c367ce83 (diff)
commands to change the font size
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);
}