mirror of
https://github.com/vlang/v.git
synced 2025-08-03 09:47:15 -04:00
15 lines
166 B
V
15 lines
166 B
V
module builtin
|
|
|
|
@[typedef]
|
|
pub struct C.IError {
|
|
_object voidptr
|
|
}
|
|
|
|
@[unsafe]
|
|
pub fn (ie &IError) free() {
|
|
unsafe {
|
|
cie := &C.IError(ie)
|
|
free(cie._object)
|
|
}
|
|
}
|