standardize on #include "foo" not <foo>
This commit is contained in:
parent
4763a042c8
commit
b53f99d0d2
2 changed files with 5 additions and 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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue