Skip to content

Commit

Permalink
runtime: fix cmallocgc's C prototype
Browse files Browse the repository at this point in the history
LGTM=khr
R=khr
CC=golang-codereviews
https://golang.org/cl/121910043
  • Loading branch information
mdempsky authored and randall77 committed Jul 31, 2014
1 parent 1329d04 commit 58241bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pkg/runtime/malloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 58241bf

Please sign in to comment.