mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
11 lines
281 B
V
11 lines
281 B
V
// dummy placeholder for functions from `array_d_gcboehm_opt.v`
|
|
// that might be needed for compile time
|
|
// `$if gcboehm_opt ? { ... } $else { ... }`
|
|
|
|
module builtin
|
|
|
|
// this is needed in `string.v`
|
|
fn __new_array_noscan(mylen int, cap int, elm_size int) array {
|
|
return array{}
|
|
}
|