aboutsummaryrefslogtreecommitdiff
path: root/src/parseh.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2016-01-15 14:16:07 -0700
committerAndrew Kelley <superjoe30@gmail.com>2016-01-15 14:16:07 -0700
commit18374ea8f18b6b48c53e6e7bd23d536ac2e8a807 (patch)
tree9d418f4515e2a3e88396a453c480595d870f857f /src/parseh.hpp
parentb0f608a6a76ff4ffd0455ec64fd8597ac0b860b9 (diff)
downloadzig-18374ea8f18b6b48c53e6e7bd23d536ac2e8a807.tar.gz
zig-18374ea8f18b6b48c53e6e7bd23d536ac2e8a807.zip
delete parseh
we'll have to switch to the clang C++ api anyway we'll revive this code later
Diffstat (limited to 'src/parseh.hpp')
-rw-r--r--src/parseh.hpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/parseh.hpp b/src/parseh.hpp
deleted file mode 100644
index b035b3c7cc..0000000000
--- a/src/parseh.hpp
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Copyright (c) 2015 Andrew Kelley
- *
- * This file is part of zig, which is MIT licensed.
- * See http://opensource.org/licenses/MIT
- */
-
-
-#ifndef ZIG_PARSEH_HPP
-#define ZIG_PARSEH_HPP
-
-#include "buffer.hpp"
-
-#include <stdio.h>
-
-void parse_h_file(const char *target_path, ZigList<const char *> *clang_argv, FILE *f);
-
-#endif