diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-17 00:11:08 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-17 00:14:07 +0100 |
commit | 9d05f6b7a797ed3424bc5d0024d21e496bb4c87b (patch) | |
tree | 03369d115ecb7e6dce30a98091cb56172e9be31a /Kernel/StdLib.h | |
parent | 2cf477a1512a1ca3f0571cb6de42b7a89a3a4565 (diff) | |
download | serenity-9d05f6b7a797ed3424bc5d0024d21e496bb4c87b.zip |
Make bash-2.05b build with minimal changes.
This is really neat. :^)
Diffstat (limited to 'Kernel/StdLib.h')
-rw-r--r-- | Kernel/StdLib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/StdLib.h b/Kernel/StdLib.h index 32349a8d44..af95546aeb 100644 --- a/Kernel/StdLib.h +++ b/Kernel/StdLib.h @@ -4,11 +4,11 @@ extern "C" { -void memcpy(void*, const void*, DWORD); +void memcpy(void*, const void*, dword); void strcpy(char*, const char*); int strcmp(char const*, const char*); -DWORD strlen(const char*); -void *memset(void*, BYTE, DWORD); +dword strlen(const char*); +void *memset(void*, byte, dword); char *strdup(const char*); int memcmp(const void*, const void*, size_t); char* strrchr(const char* str, int ch); |