standardize on #include "foo" not <foo>

This commit is contained in:
rsc 2006-07-16 15:40:05 +00:00
parent 4763a042c8
commit b53f99d0d2
2 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -1,5 +1,5 @@
#include <types.h>
#include <x86.h>
#include "types.h"
#include "x86.h"
#include "defs.h"
#include "spinlock.h"