From: rsc Date: Sun, 16 Jul 2006 15:40:05 +0000 (+0000) Subject: standardize on #include "foo" not X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=b53f99d0d2cff21c6c208f5d00bb2cd2c6e39210;p=cs3210-lab0.git standardize on #include "foo" not --- diff --git a/bootmain.c b/bootmain.c index 79d769c..4a70652 100644 --- a/bootmain.c +++ b/bootmain.c @@ -1,6 +1,6 @@ -#include -#include -#include +#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 -#include +#include "types.h" +#include "x86.h" #include "defs.h" #include "spinlock.h"