From: Matthew Dempsky Date: Thu, 31 Jul 2014 00:08:33 +0000 (-0700) Subject: runtime: fix cmallocgc's C prototype X-Git-Tag: go1.4beta1~980 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=58241bfdf7be488f8d55b604146bbb788104f6ae;p=gostls13.git runtime: fix cmallocgc's C prototype LGTM=khr R=khr CC=golang-codereviews https://golang.org/cl/121910043 --- 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)