mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-07 11:57:35 -04:00
fix build
This commit is contained in:
@@ -9,6 +9,7 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
__declspec(section ".init") void* memcpy(void* dest, const void* src, size_t n);
|
||||
__declspec(section ".init") void __fill_mem(void* dest, int val, size_t count);
|
||||
__declspec(section ".init") void* memset(void* dest, int val, size_t count);
|
||||
|
||||
int memcmp(const void* lhs, const void* rhs, size_t count);
|
||||
|
||||
@@ -81,4 +81,4 @@ void* memset(void* dst, int val, size_t n)
|
||||
__fill_mem(dst, val, n);
|
||||
|
||||
return (dst);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user