mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 17:48:33 -04:00
Rename RISC-V-Qemu-sive_e_Freedom_Studio directory to RISC-V-Qemu-sifive_e-Eclipse-GCC as it is now using Vanilla Eclipse and vanilla GCC in place of Freedom Studio.
This commit is contained in:
parent
f78ccd077a
commit
c7c60cff15
58 changed files with 0 additions and 0 deletions
|
@ -0,0 +1,17 @@
|
|||
/* See LICENSE for license details. */
|
||||
|
||||
/* These functions are intended for embedded RV32 systems and are
|
||||
obviously incorrect in general. */
|
||||
|
||||
void* __wrap_malloc(unsigned long sz)
|
||||
{
|
||||
extern void* sbrk(long);
|
||||
void* res = sbrk(sz);
|
||||
if ((long)res == -1)
|
||||
return 0;
|
||||
return res;
|
||||
}
|
||||
|
||||
void __wrap_free(void* ptr)
|
||||
{
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue