diff options
| author | Matthew Dempsky <mdempsky@google.com> | 2014-07-30 17:08:33 -0700 |
|---|---|---|
| committer | Keith Randall <khr@golang.org> | 2014-07-30 17:08:33 -0700 |
| commit | 58241bfdf7be488f8d55b604146bbb788104f6ae (patch) | |
| tree | 0223893140b5b96dc2c2804051c8973d513e4222 /src/pkg/runtime/malloc.c | |
| parent | 1329d044cf57520704a7a09281a901147abf84cc (diff) | |
| download | go-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.c | 2 |
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) |
