summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-08-23 20:58:50 +0200
committertomsmeding <tom.smeding@gmail.com>2016-08-23 20:58:50 +0200
commitcac651cd88f8da1e5957b0cc13fa25d79e1887fc (patch)
tree38b2645803df92661b797a64f18772e691d3d8fd /util.h
parent44602cb35735575c15cfcb92779337778649df8a (diff)
Many things
- two-letter AST union members - AST_QUOTED - AST_LAMBDA - an interpreter that works - function registering in the interpreter - some builtins
Diffstat (limited to 'util.h')
-rw-r--r--util.h2
1 files changed, 2 insertions, 0 deletions
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);