diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-06-02 10:40:06 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-06-02 10:40:06 -0700 |
commit | 385ff13617edb380a0a58397fe4836f4261503b4 (patch) | |
tree | 86a482bd8f038e49f6c37b1a61fa5308d306dde3 | |
parent | 2367988301704881a61ca12c23eda9c385c43d3e (diff) | |
download | mu-385ff13617edb380a0a58397fe4836f4261503b4.tar.gz |
3027
-rw-r--r-- | 000organization.cc | 2 | ||||
-rw-r--r-- | 001help.cc | 10 | ||||
-rw-r--r-- | 002test.cc | 2 | ||||
-rw-r--r-- | 003trace.cc | 16 | ||||
-rw-r--r-- | 010vm.cc | 4 | ||||
-rw-r--r-- | 020run.cc | 4 | ||||
-rw-r--r-- | 075random.cc | 2 |
7 files changed, 20 insertions, 20 deletions
diff --git a/000organization.cc b/000organization.cc index dc37dbb3..cd02d58d 100644 --- a/000organization.cc +++ b/000organization.cc @@ -113,7 +113,7 @@ int main(int argc, char* argv[]) { //: our first directive; will move the include above the program :(before "End Includes") -#include<stdlib.h> +#include <stdlib.h> //: Without directives or with the :(code) directive, lines get added at the //: end. diff --git a/001help.cc b/001help.cc index b8dbe7a6..5e769ab1 100644 --- a/001help.cc +++ b/001help.cc @@ -133,17 +133,17 @@ bool has_data(istream& in) { } :(before "End Includes") -#include<assert.h> +#include <assert.h> -#include<iostream> +#include <iostream> using std::istream; using std::ostream; using std::iostream; using std::cin; using std::cout; using std::cerr; -#include<iomanip> +#include <iomanip> -#include<cstring> -#include<string> +#include <cstring> +#include <string> using std::string; diff --git a/002test.cc b/002test.cc index 46f07b00..3ef899cd 100644 --- a/002test.cc +++ b/002test.cc @@ -108,4 +108,4 @@ void test_is_integer() { } :(before "End Includes") -#include<cstdlib> +#include <cstdlib> diff --git a/003trace.cc b/003trace.cc index 65f38eca..16cf38b8 100644 --- a/003trace.cc +++ b/003trace.cc @@ -340,25 +340,25 @@ string trim(const string& s) { } :(before "End Includes") -#include<vector> +#include <vector> using std::vector; -#include<list> +#include <list> using std::list; -#include<map> +#include <map> using std::map; -#include<set> +#include <set> using std::set; -#include<algorithm> +#include <algorithm> -#include<sstream> +#include <sstream> using std::istringstream; using std::ostringstream; -#include<fstream> +#include <fstream> using std::ifstream; using std::ofstream; -#include"termbox/termbox.h" +#include "termbox/termbox.h" #define unused __attribute__((unused)) diff --git a/010vm.cc b/010vm.cc index ffa661ef..66a1d6bb 100644 --- a/010vm.cc +++ b/010vm.cc @@ -671,6 +671,6 @@ void test_trim_floating_point() { } :(before "End Includes") -#include<utility> +#include <utility> using std::pair; -#include<math.h> +#include <math.h> diff --git a/020run.cc b/020run.cc index b33606ac..03efcd79 100644 --- a/020run.cc +++ b/020run.cc @@ -243,8 +243,8 @@ void load_all(string dir) { free(files); } :(before "End Includes") -#include<dirent.h> -#include<sys/stat.h> +#include <dirent.h> +#include <sys/stat.h> //:: Reading from memory, writing to memory. diff --git a/075random.cc b/075random.cc index 32840457..4cec27bd 100644 --- a/075random.cc +++ b/075random.cc @@ -59,4 +59,4 @@ def main [ +mem: storing 12 in location 1 :(before "End Includes") -#include<math.h> +#include <math.h> |