This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
portland-os/src/user/runtimes/cxx/extra.ld

8 lines
No EOL
172 B
Text

/* void *operator new(size_t) */
_Znwj = get_block;
/* void *operator new[](size_t) */
_Znaj = get_block;
/* void operator delete(void *, size_t) */
_ZdlPvj = free_block;