sandbox/seccomp: unexport println wrapper
All checks were successful
Test / Create distribution (push) Successful in 27s
Test / Sandbox (push) Successful in 1m45s
Test / Fortify (push) Successful in 2m40s
Test / Sandbox (race detector) (push) Successful in 2m52s
Test / Fpkg (push) Successful in 3m25s
Test / Fortify (race detector) (push) Successful in 4m10s
Test / Flake checks (push) Successful in 1m6s

This is an implementation detail that was exported for the bwrap argument builder. The removal of that package allows it to be unexported.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-04-07 04:07:20 +09:00
parent e9a7cd526f
commit f885dede9b
4 changed files with 5 additions and 4 deletions

View File

@@ -22,8 +22,8 @@ func GetOutput() func(v ...any) {
}
}
//export F_println
func F_println(v *C.char) {
//export f_println
func f_println(v *C.char) {
if fp := printlnP.Load(); fp != nil {
(*fp)(C.GoString(v))
}