aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2017-01-06 16:06:42 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2017-01-06 16:06:42 +0000
commit12e917fff2800a4bfd591d09675b21e71ae8bc75 (patch)
tree30ba99990ad72b3f51bcf46962761d02d3543775
parent08934aed39a38858e45af891cf75e02867ee040a (diff)
downloadgcc-12e917fff2800a4bfd591d09675b21e71ae8bc75.zip
gcc-12e917fff2800a4bfd591d09675b21e71ae8bc75.tar.gz
gcc-12e917fff2800a4bfd591d09675b21e71ae8bc75.tar.bz2
runtime: actually remove go-alloc.h
Accidentally omitted from the commit of CL 34797 (SVN revision 244036). From-SVN: r244166
-rw-r--r--libgo/runtime/go-alloc.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/libgo/runtime/go-alloc.h b/libgo/runtime/go-alloc.h
deleted file mode 100644
index c880a04..0000000
--- a/libgo/runtime/go-alloc.h
+++ /dev/null
@@ -1,11 +0,0 @@
-/* go-alloc.h -- allocate memory for Go.
-
- Copyright 2009 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 <stddef.h>
-#include <stdint.h>
-
-extern void *__go_alloc (unsigned int __attribute__ ((mode (pointer))));
-extern void __go_free (void *);