diff options
Diffstat (limited to 'kernel/util.c')
-rw-r--r-- | kernel/util.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/kernel/util.c b/kernel/util.c deleted file mode 100644 index da3ac9d..0000000 --- a/kernel/util.c +++ /dev/null @@ -1,9 +0,0 @@ -#include <kernel/util.h> -#include <stdint.h> - -void *memset(void *s, int c, size_t n) { - uint8_t *s2 = s; - for (size_t i = 0; i < n; n++) - s2[i] = c; - return s; -} |