From cac651cd88f8da1e5957b0cc13fa25d79e1887fc Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Tue, 23 Aug 2016 20:58:50 +0200 Subject: Many things - two-letter AST union members - AST_QUOTED - AST_LAMBDA - an interpreter that works - function registering in the interpreter - some builtins --- util.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'util.h') diff --git a/util.h b/util.h index d2f18c3..1835aa2 100644 --- a/util.h +++ b/util.h @@ -17,6 +17,8 @@ char* copybufasstring(const char *b,int length); void outofmem(void) __attribute__((noreturn)); +double floatmod(double a,double b); + void* malloccheck(size_t n); void* calloccheck(size_t n,size_t s); void* realloccheck(void *p,size_t n); -- cgit v1.2.3-54-g00ecf