1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: fix some of v test-cleancode 2

This commit is contained in:
Delyan Angelov
2021-04-05 20:55:03 +03:00
parent fec89c7efb
commit c0e2b9b1e2
5 changed files with 8 additions and 8 deletions

View File

@@ -19,9 +19,9 @@ fn C.bignum_from_int(n &Number, i u64)
fn C.bignum_to_int(n &Number) int
fn C.bignum_from_string(n &Number, s byteptr, nbytes int)
fn C.bignum_from_string(n &Number, s &byte, nbytes int)
fn C.bignum_to_string(n &Number, s byteptr, maxsize int)
fn C.bignum_to_string(n &Number, s &byte, maxsize int)
// c = a + b
fn C.bignum_add(a &Number, b &Number, c &Number)