David Crawshaw | 0cbb12f | 2016-08-26 08:50:50 -0400 | [diff] [blame] | 1 | // 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 Cox | d4b2638 | 2021-02-19 18:35:10 -0500 | [diff] [blame] | 5 | //go:build (!linux && !freebsd && !darwin) || !cgo |
David Crawshaw | 0cbb12f | 2016-08-26 08:50:50 -0400 | [diff] [blame] | 6 | |
| 7 | package plugin |
| 8 | |
| 9 | import "errors" |
| 10 | |
Zhou Peng | 5b976d3 | 2018-05-05 13:08:17 +0000 | [diff] [blame] | 11 | func lookup(p *Plugin, symName string) (Symbol, error) { |
David Crawshaw | 0cbb12f | 2016-08-26 08:50:50 -0400 | [diff] [blame] | 12 | return nil, errors.New("plugin: not implemented") |
| 13 | } |
| 14 | |
| 15 | func open(name string) (*Plugin, error) { |
| 16 | return nil, errors.New("plugin: not implemented") |
| 17 | } |