diff options
author | Treeki <treeki@gmail.com> | 2012-11-10 17:15:51 +0100 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-11-10 17:15:51 +0100 |
commit | a1ca2b30e4f05037d2a0d60b821e2f8699ab8891 (patch) | |
tree | 2d8c5dcb8a0ec1c680e1e9b47d7a4880d6707277 /include | |
parent | 22915e16efa62f3169227f6121326cb5af5315ba (diff) | |
download | kamek-a1ca2b30e4f05037d2a0d60b821e2f8699ab8891.tar.gz kamek-a1ca2b30e4f05037d2a0d60b821e2f8699ab8891.zip |
pushed the very unfinished 4P
Diffstat (limited to '')
-rw-r--r-- | include/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h index 5b85824..5669a3f 100644 --- a/include/common.h +++ b/include/common.h @@ -82,6 +82,7 @@ void OSReport(const char *format, ...); int sprintf(char *buffer, const char *format, ...);
int snprintf(char *buffer, size_t buff_size, const char *format, ...);
char *strcat(char *destination, const char *source);
+extern "C" void *memcpy(void *dest, const void *src, size_t count);
void *memset(void *ptr, int value, size_t num);
int memcmp(const void *ptr1, const void *ptr2, size_t num);
|