diff options
author | Marvin Borner | 2020-08-25 23:37:09 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-25 23:37:09 +0200 |
commit | 2b26af8325b9492948cb7fe516638537e4e58337 (patch) | |
tree | 6640f28efa106fa682dd5578ac70633039a682a0 /libc/inc/mem.h | |
parent | ec5c4a7398fcfcfb5a809292cbe029b1bb69a320 (diff) |
Some GUI things
Diffstat (limited to 'libc/inc/mem.h')
-rw-r--r-- | libc/inc/mem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/inc/mem.h b/libc/inc/mem.h index 0030b3d..cb64ce8 100644 --- a/libc/inc/mem.h +++ b/libc/inc/mem.h @@ -20,8 +20,8 @@ u32 HEAP; u32 HEAP_START; -void *memcpy(void *dst, const void *src, u32 n); -void *memset(void *dst, int c, u32 n); +void *memcpy(void *dest, const void *src, u32 n); +void *memset(void *dest, int c, u32 n); int memcmp(const void *s1, const void *s2, u32 n); #endif |