mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
[apps] Fix an uninitialized variable
Change-Id: I8a5e28b411a168e7c62108c65a7442b20f6f609a
This commit is contained in:
@@ -3,6 +3,10 @@
|
||||
|
||||
/* See the "Run-time ABI for the ARM Architecture", Section 4.3.3 */
|
||||
|
||||
void __aeabi_memclr(void * dest, size_t n) {
|
||||
memset(dest, 0, n);
|
||||
}
|
||||
|
||||
void __aeabi_memclr4(void * dest, size_t n) {
|
||||
memset(dest, 0, n);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user