summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-08-13 15:50:06 -0400
committerRuss Cox <rsc@golang.org>2014-08-13 15:50:06 -0400
commitdbad4e57e9004e42066fd8b90f8b200a96d597df (patch)
tree9cd907e582229d2c4159f5a1dfd085eba334e65d /src
parentdf0ee6bbcfb9b7cfb497347df464563ac8a3aefe (diff)
downloadgo-dbad4e57e9004e42066fd8b90f8b200a96d597df.tar.gz
[dev.power64] runtime: fix C prototype for cmallocgc
LGTM=minux R=minux CC=golang-codereviews https://codereview.appspot.com/122520043
Diffstat (limited to 'src')
-rw-r--r--src/pkg/runtime/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/malloc.c b/src/pkg/runtime/malloc.c
index d56d0dcf3..1e133168b 100644
--- a/src/pkg/runtime/malloc.c
+++ b/src/pkg/runtime/malloc.c
@@ -21,7 +21,7 @@ MHeap runtime·mheap;
#pragma dataflag NOPTR
MStats runtime·memstats;
-void runtime·cmallocgc(uintptr size, Type *typ, uint32 flag, void **ret);
+void runtime·cmallocgc(uintptr size, Type *typ, intgo flag, void **ret);
void*
runtime·mallocgc(uintptr size, Type *typ, uint32 flag)