summaryrefslogtreecommitdiffhomepage
path: root/minicc.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-03-29 18:30:04 +0200
committerRoland Reichwein <mail@reichwein.it>2020-03-29 18:30:04 +0200
commit6154309f0cd3ed5071996951465808f2503e2eb1 (patch)
treeb1666eea410e859f814ae47ca47b8b2d7d333c50 /minicc.h
parentb0cac4997b5767526b29187fecf2a87aa1b0ebef (diff)
mcc produces first dummy executable
Diffstat (limited to 'minicc.h')
-rw-r--r--minicc.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/minicc.h b/minicc.h
index 5a5f5d8..d3135c6 100644
--- a/minicc.h
+++ b/minicc.h
@@ -1,14 +1,17 @@
#pragma once
#include <cstdlib>
-#include <vector>
-#include <string>
+#include <filesystem>
#include <iostream>
+#include <string>
+#include <vector>
using namespace std::string_literals;
using index_t = size_t;
+namespace fs = std::filesystem;
+
std::vector<std::string> split(std::string s);
struct Location {