elvish/pkg/eval/plugin_gccgo.go
2021-06-20 21:11:32 +01:00

18 lines
344 B
Go

//+build gccgo
package eval
import "errors"
var errPluginNotImplemented = errors.New("plugin not implemented")
type pluginStub struct{}
func pluginOpen(name string) (pluginStub, error) {
return pluginStub{}, errPluginNotImplemented
}
func (pluginStub) Lookup(symName string) (interface{}, error) {
return nil, errPluginNotImplemented
}