]> Devi Nivas Git - cs3210-lab0.git/commitdiff
standardize on #include "foo" not <foo>
authorrsc <rsc>
Sun, 16 Jul 2006 15:40:05 +0000 (15:40 +0000)
committerrsc <rsc>
Sun, 16 Jul 2006 15:40:05 +0000 (15:40 +0000)
bootmain.c
console.c

index 79d769ca2181f7f04b1d442b4d02b3054b148304..4a706521da8c3d3a534b259187583b8dd0b831dc 100644 (file)
@@ -1,6 +1,6 @@
-#include <types.h>
-#include <elf.h>
-#include <x86.h>
+#include "types.h"
+#include "elf.h"
+#include "x86.h"
 
 /**********************************************************************
  * This a dirt simple boot loader, whose sole job is to boot
index 75dd82efe066283aff7aea2246e02ea2d8570157..eb394f12b0f684c1da8e1421667474871a8253d0 100644 (file)
--- a/console.c
+++ b/console.c
@@ -1,5 +1,5 @@
-#include <types.h>
-#include <x86.h>
+#include "types.h"
+#include "x86.h"
 #include "defs.h"
 #include "spinlock.h"