Files
tinygo/src/syscall/syscall.go
T
Ayke van Laethem 2920492e0a syscall: remove some dead code
Not sure why it's here but it's not referenced anywhere.
2024-07-18 08:57:02 +02:00

23 lines
281 B
Go

package syscall
import (
"errors"
)
const (
MSG_DONTWAIT = 0x40
AF_INET = 0x2
AF_INET6 = 0xa
)
func Exit(code int)
type Rlimit struct {
Cur uint64
Max uint64
}
func Setrlimit(resource int, rlim *Rlimit) error {
return errors.New("Setrlimit not implemented")
}