diff options
Diffstat (limited to 'src/cmd/internal/archive/testdata/mycgo/c1.c')
-rw-r--r-- | src/cmd/internal/archive/testdata/mycgo/c1.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cmd/internal/archive/testdata/mycgo/c1.c b/src/cmd/internal/archive/testdata/mycgo/c1.c new file mode 100644 index 0000000..869a324 --- /dev/null +++ b/src/cmd/internal/archive/testdata/mycgo/c1.c @@ -0,0 +1,9 @@ +// Copyright 2017 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 <stdio.h> + +void c1(void) { + puts("c1"); +} |