about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-06-02 10:40:06 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-06-02 10:40:06 -0700
commit385ff13617edb380a0a58397fe4836f4261503b4 (patch)
tree86a482bd8f038e49f6c37b1a61fa5308d306dde3
parent2367988301704881a61ca12c23eda9c385c43d3e (diff)
downloadmu-385ff13617edb380a0a58397fe4836f4261503b4.tar.gz
3027
-rw-r--r--000organization.cc2
-rw-r--r--001help.cc10
-rw-r--r--002test.cc2
-rw-r--r--003trace.cc16
-rw-r--r--010vm.cc4
-rw-r--r--020run.cc4
-rw-r--r--075random.cc2
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>
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430