xv6

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit b53f99d0d2cff21c6c208f5d00bb2cd2c6e39210
parent 4763a042c8b1f773c7517a145c72f455bde78b7f
Author: rsc <rsc>
Date:   Sun, 16 Jul 2006 15:40:05 +0000

standardize on #include "foo" not <foo>

Diffstat:
Mbootmain.c | 6+++---
Mconsole.c | 4++--
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git 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 @@ -1,5 +1,5 @@ -#include <types.h> -#include <x86.h> +#include "types.h" +#include "x86.h" #include "defs.h" #include "spinlock.h"