diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-06 12:21:18 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-06 12:21:27 -0700 |
commit | f278a15d218852980691f4b77fb8ac6a5fe52e4d (patch) | |
tree | 516c3f6b9ac1cc253fcdf931b00cdb0375daea46 /cpp/001test | |
parent | 730b03bd75f67053eefee312650f383ad11555ee (diff) | |
download | mu-f278a15d218852980691f4b77fb8ac6a5fe52e4d.tar.gz |
1027 - reorg includes
Diffstat (limited to 'cpp/001test')
-rw-r--r-- | cpp/001test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/001test b/cpp/001test index 8222adcd..92cbe9cf 100644 --- a/cpp/001test +++ b/cpp/001test @@ -91,6 +91,9 @@ int to_int(string n) { } :(before "End Includes") +#include<assert.h> +#include<cstdlib> + #include<iostream> using std::istream; using std::ostream; @@ -100,3 +103,6 @@ using std::cout; using std::cerr; #include<cstring> +#include<string> +using std::string; +#define NOT_FOUND string::npos // macro doesn't complain about redef |