aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/malloc.c
diff options
context:
space:
mode:
authorMatthew Dempsky <mdempsky@google.com>2014-07-30 17:08:33 -0700
committerKeith Randall <khr@golang.org>2014-07-30 17:08:33 -0700
commit58241bfdf7be488f8d55b604146bbb788104f6ae (patch)
tree0223893140b5b96dc2c2804051c8973d513e4222 /src/pkg/runtime/malloc.c
parent1329d044cf57520704a7a09281a901147abf84cc (diff)
downloadgo-58241bfdf7be488f8d55b604146bbb788104f6ae.tar.xz
runtime: fix cmallocgc's C prototype
LGTM=khr R=khr CC=golang-codereviews https://golang.org/cl/121910043
Diffstat (limited to 'src/pkg/runtime/malloc.c')
-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 cf1acdcbce..7bc70cf608 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, uint32 flag, void **ret);
void*
runtime·mallocgc(uintptr size, Type *typ, uint32 flag)