summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrsc <rsc>2006-07-16 15:40:05 +0000
committerrsc <rsc>2006-07-16 15:40:05 +0000
commitb53f99d0d2cff21c6c208f5d00bb2cd2c6e39210 (patch)
tree29bb029577c4176f0132ca49165264ef05916f82
parent4763a042c8b1f773c7517a145c72f455bde78b7f (diff)
downloadxv6-labs-b53f99d0d2cff21c6c208f5d00bb2cd2c6e39210.tar.gz
xv6-labs-b53f99d0d2cff21c6c208f5d00bb2cd2c6e39210.tar.bz2
xv6-labs-b53f99d0d2cff21c6c208f5d00bb2cd2c6e39210.zip
standardize on #include "foo" not <foo>
-rw-r--r--bootmain.c6
-rw-r--r--console.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/bootmain.c b/bootmain.c
index 79d769c..4a70652 100644
--- a/bootmain.c
+++ b/bootmain.c
@@ -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
diff --git a/console.c b/console.c
index 75dd82e..eb394f1 100644
--- 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"