1// +build go1.16
2
3// Package syscall provide wrapper of standard library syscall package for native import in Yaegi.
4package syscall
5
6import "reflect"
7
8// Symbols stores the map of syscall package symbols.
9var Symbols = map[string]map[string]reflect.Value{}
10
11func init() {
12	Symbols["github.com/traefik/yaegi/stdlib/syscall/syscall"] = map[string]reflect.Value{
13		"Symbols": reflect.ValueOf(Symbols),
14	}
15}
16
17//go:generate ../../internal/cmd/extract/extract -exclude=^Exec,Exit,ForkExec,Kill,Ptrace,Reboot,Shutdown,StartProcess,Syscall syscall
18