mirror of
https://github.com/golang/go
synced 2024-11-07 01:36:13 -07:00
dd4e7f9722
Add _test.go files in the individal directories to invoke 'go build' with appropriate arguments. Move the test driver out of cmd/dist so that it's easier to invoke the test separately (using 'go test .'). Updates #30228 Updates #28387 Change-Id: Ibc4a024a52c12a274058298b41cc90709f7f56c8 Reviewed-on: https://go-review.googlesource.com/c/163420 Reviewed-by: Ian Lance Taylor <iant@golang.org>
15 lines
302 B
C
15 lines
302 B
C
// Copyright 2013 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
#include "_cgo_export.h"
|
|
|
|
#ifdef WIN32
|
|
extern void setCallback(void *);
|
|
void init() {
|
|
setCallback(goCallback);
|
|
}
|
|
#else
|
|
void init() {}
|
|
#endif
|