summaryrefslogtreecommitdiff
path: root/fns.h
diff options
context:
space:
mode:
Diffstat (limited to 'fns.h')
-rw-r--r--fns.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/fns.h b/fns.h
new file mode 100644
index 0000000..ddc80be
--- /dev/null
+++ b/fns.h
@@ -0,0 +1,12 @@
+Symbol *install(char*, int, double);
+Symbol *lookup(char*);
+double round(double);
+int lookuptype(char*);
+char* typename(int);
+char* ctypename(int);
+void init(void);
+void *emalloc(ulong);
+void *erealloc(void*, ulong);
+char *estrdup(char*);
+
+int yyparse(void);