mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
builtin: move C. calls to .c.v files (#11164)
This commit is contained in:
parent
c9e9556a92
commit
47884dfd1f
21 changed files with 288 additions and 206 deletions
|
@ -155,3 +155,8 @@ fn bare_backtrace() string {
|
|||
fn __exit(code int) {
|
||||
sys_exit(code)
|
||||
}
|
||||
|
||||
[export: 'qsort']
|
||||
fn __qsort(base voidptr, nmemb size_t, size size_t, sort_cb FnSortCB) {
|
||||
panic('qsort() is not yet implemented in `-freestanding`')
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue