From 58241bfdf7be488f8d55b604146bbb788104f6ae Mon Sep 17 00:00:00 2001 From: Matthew Dempsky Date: Wed, 30 Jul 2014 17:08:33 -0700 Subject: [PATCH] runtime: fix cmallocgc's C prototype LGTM=khr R=khr CC=golang-codereviews https://golang.org/cl/121910043 --- src/pkg/runtime/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.48.1