aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime.c
diff options
context:
space:
mode:
authorKen Thompson <ken@golang.org>2008-06-15 20:24:30 -0700
committerKen Thompson <ken@golang.org>2008-06-15 20:24:30 -0700
commite1a06ccc80159cf2b6a3cd86493c6a53b5a6f9e8 (patch)
treefb752fc19ce6aaf23a67e513f40ea0c80d557560 /src/runtime/runtime.c
parent073486c3ed10f4f737484253320f44804cac1447 (diff)
downloadgo-e1a06ccc80159cf2b6a3cd86493c6a53b5a6f9e8.tar.xz
now checks for lvalue/rvalue context of
expressions. start of generics for calling builtin functions start of map type 'any' demoted from reserved word to type SVN=122808
Diffstat (limited to 'src/runtime/runtime.c')
-rw-r--r--src/runtime/runtime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c
index b4c4a6ce30..724254a116 100644
--- a/src/runtime/runtime.c
+++ b/src/runtime/runtime.c
@@ -147,7 +147,7 @@ throw(int8 *s)
sys_exit(1);
}
-static void
+void
mcpy(byte *t, byte *f, uint32 n)
{
while(n > 0) {
@@ -169,7 +169,7 @@ brk(uint32 n)
return v;
}
-static void*
+void*
mal(uint32 n)
{
byte* v;