1 /* go-new.c -- the generic go new() function.
3 Copyright 2009 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
13 __go_new (uintptr_t size
)
15 return runtime_mallocgc (size
, 0, 1, 1);
19 __go_new_nopointers (uintptr_t size
)
21 return runtime_mallocgc (size
, FlagNoPointers
, 1, 1);