diff options
Diffstat (limited to 'src/runtime/stack.c')
| -rw-r--r-- | src/runtime/stack.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/runtime/stack.c b/src/runtime/stack.c new file mode 100644 index 0000000000..a4eeedc453 --- /dev/null +++ b/src/runtime/stack.c @@ -0,0 +1,19 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +#include "runtime.h" + +// Stubs for stack management. +// In a separate file so they can be overridden during testing of gc. + +void* +stackalloc(uint32 n) +{ + return mal(n); +} + +void +stackfree(void*) +{ +} |
