diff options
author | rsc <rsc> | 2006-07-16 15:40:05 +0000 |
---|---|---|
committer | rsc <rsc> | 2006-07-16 15:40:05 +0000 |
commit | b53f99d0d2cff21c6c208f5d00bb2cd2c6e39210 (patch) | |
tree | 29bb029577c4176f0132ca49165264ef05916f82 | |
parent | 4763a042c8b1f773c7517a145c72f455bde78b7f (diff) | |
download | xv6-labs-b53f99d0d2cff21c6c208f5d00bb2cd2c6e39210.tar.gz xv6-labs-b53f99d0d2cff21c6c208f5d00bb2cd2c6e39210.tar.bz2 xv6-labs-b53f99d0d2cff21c6c208f5d00bb2cd2c6e39210.zip |
standardize on #include "foo" not <foo>
-rw-r--r-- | bootmain.c | 6 | ||||
-rw-r--r-- | console.c | 4 |
2 files changed, 5 insertions, 5 deletions
@@ -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 @@ -1,5 +1,5 @@ -#include <types.h> -#include <x86.h> +#include "types.h" +#include "x86.h" #include "defs.h" #include "spinlock.h" |