summaryrefslogtreecommitdiff
path: root/src/runtime/c/pgf
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2014-11-27 11:12:14 +0000
committerkr.angelov <kr.angelov@gmail.com>2014-11-27 11:12:14 +0000
commitf63e8faf006cfe9dd69e0248590194b03d142fd6 (patch)
tree04b9fc2d11ecf18ab6885e4a913123170532fd41 /src/runtime/c/pgf
parent41e217a641f316bfd333cc35d820e98922a58506 (diff)
remove pgf/parser.h
Diffstat (limited to 'src/runtime/c/pgf')
-rw-r--r--src/runtime/c/pgf/literals.c1
-rw-r--r--src/runtime/c/pgf/parser.c4
-rw-r--r--src/runtime/c/pgf/parser.h8
-rw-r--r--src/runtime/c/pgf/parseval.c2
-rw-r--r--src/runtime/c/pgf/pgf.c1
5 files changed, 4 insertions, 12 deletions
diff --git a/src/runtime/c/pgf/literals.c b/src/runtime/c/pgf/literals.c
index 9ec22b686..51a426031 100644
--- a/src/runtime/c/pgf/literals.c
+++ b/src/runtime/c/pgf/literals.c
@@ -1,6 +1,5 @@
#include <gu/in.h>
#include <gu/utf8.h>
-#include <pgf/parser.h>
#include <pgf/literals.h>
#include <wctype.h>
diff --git a/src/runtime/c/pgf/parser.c b/src/runtime/c/pgf/parser.c
index ffb2f4a0f..b360e0e81 100644
--- a/src/runtime/c/pgf/parser.c
+++ b/src/runtime/c/pgf/parser.c
@@ -1,5 +1,7 @@
-#include <pgf/parser.h>
+#include <pgf/data.h>
+#include <pgf/expr.h>
#include <pgf/linearizer.h>
+#include <gu/enum.h>
#include <gu/seq.h>
#include <gu/assert.h>
#include <gu/choice.h>
diff --git a/src/runtime/c/pgf/parser.h b/src/runtime/c/pgf/parser.h
deleted file mode 100644
index afe443042..000000000
--- a/src/runtime/c/pgf/parser.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef PGF_PARSER_H_
-#define PGF_PARSER_H_
-
-#include <gu/enum.h>
-#include <pgf/data.h>
-#include <pgf/expr.h>
-
-#endif // PGF_PARSER_H_
diff --git a/src/runtime/c/pgf/parseval.c b/src/runtime/c/pgf/parseval.c
index 638ee79eb..cbea3d429 100644
--- a/src/runtime/c/pgf/parseval.c
+++ b/src/runtime/c/pgf/parseval.c
@@ -1,7 +1,7 @@
#include <pgf/pgf.h>
#include <pgf/data.h>
#include <pgf/linearizer.h>
-#include <pgf/parser.h>
+#include <gu/enum.h>
typedef struct {
int start, end;
diff --git a/src/runtime/c/pgf/pgf.c b/src/runtime/c/pgf/pgf.c
index 9fc4b9b6c..0412099e1 100644
--- a/src/runtime/c/pgf/pgf.c
+++ b/src/runtime/c/pgf/pgf.c
@@ -3,7 +3,6 @@
#include <pgf/expr.h>
#include <pgf/reader.h>
#include <pgf/linearizer.h>
-#include <pgf/parser.h>
#include <gu/file.h>
#include <gu/string.h>
#include <gu/enum.h>