diff options
| author | 2022-08-19 10:41:25 +0200 | |
|---|---|---|
| committer | 2022-08-19 10:41:25 +0200 | |
| commit | e9543de5ab1de08a452de4b9df705c43aa9ff6ac (patch) | |
| tree | 0bfbb8c2794a1181c4e52d29b351239c447f42c8 /src/libc.hff | |
| parent | b6c31ebc4a33831c8f59e43984f3af950d418b88 (diff) | |
templates
Diffstat (limited to 'src/libc.hff')
| -rw-r--r-- | src/libc.hff | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libc.hff b/src/libc.hff index 2778a79..a6c326c 100644 --- a/src/libc.hff +++ b/src/libc.hff @@ -29,6 +29,7 @@ def PATH_MAX = 4096; // string.h extern fn strlen(s *const u8) usize; extern fn strcmp(a *const u8, b *const u8) 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 strcpy(*u8, *const u8) *u8; |