summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/cgo/cgo_arm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/runtime/cgo/cgo_arm.c')
-rw-r--r--src/pkg/runtime/cgo/cgo_arm.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/pkg/runtime/cgo/cgo_arm.c b/src/pkg/runtime/cgo/cgo_arm.c
deleted file mode 100644
index d23f53e77..000000000
--- a/src/pkg/runtime/cgo/cgo_arm.c
+++ /dev/null
@@ -1,12 +0,0 @@
-// 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.
-
-#pragma cgo_import_static x_cgo_load_gm
-extern void x_cgo_load_gm(void);
-void (*_cgo_load_gm)(void) = x_cgo_load_gm;
-
-#pragma cgo_import_static x_cgo_save_gm
-extern void x_cgo_save_gm(void);
-void (*_cgo_save_gm)(void) = x_cgo_save_gm;
-