blob: 2e9492e7c657e66d5a4c8483902095d495ff0a13 [file] [log] [blame]
David Crawshaw0cbb12f2016-08-26 08:50:50 -04001// Copyright 2016 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Russ Coxd4b26382021-02-19 18:35:10 -05005//go:build (!linux && !freebsd && !darwin) || !cgo
David Crawshaw0cbb12f2016-08-26 08:50:50 -04006
7package plugin
8
9import "errors"
10
Zhou Peng5b976d32018-05-05 13:08:17 +000011func lookup(p *Plugin, symName string) (Symbol, error) {
David Crawshaw0cbb12f2016-08-26 08:50:50 -040012 return nil, errors.New("plugin: not implemented")
13}
14
15func open(name string) (*Plugin, error) {
16 return nil, errors.New("plugin: not implemented")
17}