Skip to content

Commit 1ab341e

Browse files
committed
work with V 0.4.3
1 parent 1f7750d commit 1ab341e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wrapper.v

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ pub fn cbsl_open(mod CBSL_MODE, filename string) voidptr {
3838
return C.cbsl_open(mod, filename.str)
3939
}
4040

41-
[inline]
41+
@[inline]
4242
pub fn cbsl_write(ctx voidptr, data voidptr, size u64) CBSL_ERRORS {
4343
return C.cbsl_write(ctx, data, size)
4444
}
4545

46-
[inline]
46+
@[inline]
4747
pub fn cbsl_read(ctx voidptr, data voidptr, size u64) CBSL_ERRORS {
4848
return C.cbsl_read(ctx, data, size)
4949
}
5050

51-
[inline]
51+
@[inline]
5252
pub fn cbsl_close(ctx voidptr) CBSL_ERRORS {
5353
return C.cbsl_close(ctx)
5454
}

0 commit comments

Comments
 (0)