mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
13 lines
117 B
Go
13 lines
117 B
Go
package main
|
|
|
|
import (
|
|
"C"
|
|
)
|
|
|
|
func errorToInt(e error) C.int {
|
|
if e == nil {
|
|
return 0
|
|
} else {
|
|
return -1
|
|
}
|
|
}
|