summaryrefslogtreecommitdiff
path: root/src/kernel/util.h
diff options
context:
space:
mode:
authordzwdz2021-07-18 20:01:20 +0200
committerdzwdz2021-07-18 20:01:20 +0200
commita31794504d911d584265ac0427dfbba9a4d9ef72 (patch)
treeceff471e05be07eca6c2281a8c1d0bdcd19678b2 /src/kernel/util.h
parent185c7c44c0da51b5442abf4fd3fb549f99c5bab8 (diff)
basic executable loading
Diffstat (limited to 'src/kernel/util.h')
-rw-r--r--src/kernel/util.h1
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);