YACASL2の依存関係を整理
[YACASL2.git] / src / dumpword.c
index 5ce0ec4..7e7d00a 100644 (file)
@@ -1,6 +1,8 @@
-#include "casl2.h"
 #define _GNU_SOURCE
 #include <getopt.h>
+#include "word.h"
+#include "cerr.h"
+#include "cmem.h"
 
 static struct option longopts[] = {
     { "arithmetic", no_argument, NULL, 'a' },
@@ -16,7 +18,7 @@ int main(int argc, char *argv[])
     WORD word;
     const char *usage = "Usage: %s [-alh] WORD\n";
 
-    cerr = malloc_chk(sizeof(CERR), "cerr");
+    cerr_init();
     while((opt = getopt_long(argc, argv, "alh", longopts, NULL)) != -1) {
         switch(opt) {
         case 'l':