diff options
author | dzwdz | 2021-07-18 20:01:20 +0200 |
---|---|---|
committer | dzwdz | 2021-07-18 20:01:20 +0200 |
commit | a31794504d911d584265ac0427dfbba9a4d9ef72 (patch) | |
tree | ceff471e05be07eca6c2281a8c1d0bdcd19678b2 /src/kernel/util.h | |
parent | 185c7c44c0da51b5442abf4fd3fb549f99c5bab8 (diff) |
basic executable loading
Diffstat (limited to 'src/kernel/util.h')
-rw-r--r-- | src/kernel/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/kernel/util.h b/src/kernel/util.h index 688ac63..4bd7c31 100644 --- a/src/kernel/util.h +++ b/src/kernel/util.h @@ -1,4 +1,5 @@ #pragma once #include <stddef.h> +void *memcpy(void *dest, const void *src, size_t n); void *memset(void *s, int c, size_t n); |