aboutsummaryrefslogtreecommitdiff
path: root/src/libc.hff
diff options
context:
space:
mode:
Diffstat (limited to 'src/libc.hff')
-rw-r--r--src/libc.hff1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libc.hff b/src/libc.hff
index 533a933..57ff532 100644
--- a/src/libc.hff
+++ b/src/libc.hff
@@ -33,6 +33,7 @@ extern fn strncmp(a *const u8, b *const u8, usize) int;
extern fn memcmp(*const void, *const void, usize) int;
extern fn strcasecmp(a *const u8, b *const u8) int;
extern fn memcpy(*void, *const void, usize) *void;
+extern fn memset(*const void, int, usize) *void;
extern fn strcpy(*u8, *const u8) *u8;
extern fn strerror(int) *const u8;
extern fn strstr(*const u8, *const u8) *const u8;