From 4e8142c929bf285870aaa561d8bf47c94639b89b Mon Sep 17 00:00:00 2001 From: Ken Thompson Date: Mon, 16 Jun 2008 22:34:50 -0700 Subject: maps SVN=123089 --- src/runtime/runtime.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/runtime/runtime.h') diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h index d006915730..898c7b4083 100644 --- a/src/runtime/runtime.h +++ b/src/runtime/runtime.h @@ -80,12 +80,18 @@ enum #define nil ((void*)0) /* - * very low level + * very low level c-called */ void FLUSH(void*); +void throw(int8*); void prints(int8*); void mcpy(byte*, byte*, uint32); void* mal(uint32); +uint32 cmpstring(string, string); + +/* + * low level go -called + */ void sys_exit(int32); void sys_write(int32, void*, int32); void sys_breakpoint(void); @@ -94,7 +100,7 @@ void sys_memclr(byte*, uint32); void* sys_getcallerpc(void*); /* - * runtime + * runtime go-called */ void sys_printbool(bool); void sys_printfloat(float64); -- cgit v1.3-5-g9baa