about summary refs log tree commit diff stats
path: root/cpp/boot.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/boot.cc')
-rw-r--r--cpp/boot.cc66
1 files changed, 0 insertions, 66 deletions
diff --git a/cpp/boot.cc b/cpp/boot.cc
deleted file mode 100644
index 64a0c58e..00000000
--- a/cpp/boot.cc
+++ /dev/null
@@ -1,66 +0,0 @@
-// C++ style:
-//  no pointers except cell*
-//  use long as the default integer type; it's always large enough to hold pointers
-
-#define unused __attribute__((unused))
-
-#include<cstdio>
-#include<cstring>
-#include<cstdlib>
-#include<errno.h>
-#include<time.h>
-#include<math.h>
-#include<vector>
-using std::vector;
-#include<list>
-using std::list;
-#include<stack>
-using std::stack;
-#include<utility>
-using std::pair;
-
-#include<tr1/unordered_map>
-using std::tr1::unordered_map;
-#include<tr1/unordered_set>
-using std::tr1::unordered_set;
-#include<algorithm>
-
-#include<string>
-using std::string;
-const size_t NOT_FOUND = string::npos;
-
-#include<iostream>
-using std::istream;
-using std::ostream;
-using std::iostream;
-using std::cin;
-using std::cout;
-using std::cerr;
-
-#include<sstream>
-using std::stringstream;
-using std::istringstream;
-using std::ostringstream;
-
-#include<fstream>
-using std::ifstream;
-using std::ofstream;
-
-
-
-// interpreter decls
-namespace mu {
-
-#include "type_list"
-
-#include "function_list"
-
-// interpreter impl
-
-#include "file_list"
-
-// interpreter tests
-
-#include "test_file_list"
-
-}  // namespace mu