summaryrefslogtreecommitdiff
path: root/mino.c
diff options
context:
space:
mode:
Diffstat (limited to 'mino.c')
-rw-r--r--mino.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/mino.c b/mino.c
new file mode 100644
index 0000000..0f3b55d
--- /dev/null
+++ b/mino.c
@@ -0,0 +1,14 @@
+#include<stdio.h>
+#include<stdlib.h>
+#include"mino.h"
+#include"graph.h"
+
+NR V die(IM C*f,...)VA(f,vfprintf(stderr,f,ap),fputc('\n',stderr),exit(1))
+V*make(Uz z){V*p;N(p=malloc(z), die("oom"))R p;}
+V*remk(V*p,Uz z){N(p=realloc(p,z),die("oom"))R p;}
+V del(V*p){free(p);}
+
+I main(I ac,C**av){(V)ac,(V)av;
+ graph_init();
+ atexit(graph_deinit);
+ R 0;}