diff options
author | dzwdz | 2022-08-04 23:23:50 +0200 |
---|---|---|
committer | dzwdz | 2022-08-04 23:23:50 +0200 |
commit | 749a150e37fbfdaf33a8d6738e95306e6d95e8b5 (patch) | |
tree | 73e6191443113be4ec613c30281ce9c56ee7b20a /src/shared | |
parent | ce00d1677d7a419b427e7f11963eee982a55a231 (diff) |
move the kernel util tests to userland
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/mem.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/mem.h b/src/shared/mem.h index 8eb091f..8c83f2f 100644 --- a/src/shared/mem.h +++ b/src/shared/mem.h @@ -1,6 +1,8 @@ #pragma once #include <stddef.h> +/* note: (partially) tested in the userland tests */ + void *memchr(const void *s, int c, size_t n); int memcmp(const void *s1, const void *s2, size_t n); |