1
0
mirror of https://github.com/golang/go synced 2024-11-19 06:04:39 -07:00

runtime: fix cmallocgc's C prototype

LGTM=khr
R=khr
CC=golang-codereviews
https://golang.org/cl/121910043
This commit is contained in:
Matthew Dempsky 2014-07-30 17:08:33 -07:00 committed by Keith Randall
parent 1329d044cf
commit 58241bfdf7

View File

@ -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)