[misc] Also the include files...

This commit is contained in:
Kevin Lange 2011-12-10 17:45:04 -06:00
parent 3670757dc9
commit 145c4274d5
11 changed files with 21 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* vim: noexpandtab tabstop=4 shiftwidth=4
/* vim: tabstop=4 shiftwidth=4 noexpandtab
*
* Values for ATA / PATA devices
*/

View File

@ -1,3 +1,5 @@
/* vim: tabstop=4 shiftwidth=4 noexpandtab
*/
#ifndef BOOT_H
#define BOOT_H
/*

View File

@ -1,4 +1,5 @@
/**
/* vim: tabstop=4 shiftwidth=4 noexpandtab
*
* ELF Binary Executable headers
*
*/

View File

@ -1,3 +1,5 @@
/* vim: tabstop=4 shiftwidth=4 noexpandtab
*/
#ifndef EXT2_H
#define EXT2_h

View File

@ -1,3 +1,5 @@
/* vim: tabstop=4 shiftwidth=4 noexpandtab
*/
#ifndef FS_H
#define FS_H

View File

@ -1,3 +1,5 @@
/* vim: tabstop=4 shiftwidth=4 noexpandtab
*/
#ifndef SYSTEM_H
#define SYSTEM_H

View File

@ -1,3 +1,5 @@
/* vim: tabstop=4 shiftwidth=4 noexpandtab
*/
#ifndef _SYSCALL_H
#define _SYSCALL_H

View File

@ -1,3 +1,5 @@
/* vim: tabstop=4 shiftwidth=4 noexpandtab
*/
#ifndef __SYSTEM_H
#define __SYSTEM_H
#define _KERNEL_

View File

@ -1,6 +1,4 @@
/*
* vim:tabstop=4
* vim:noexpandtab
/* vim: tabstop=4 shiftwidth=4 noexpandtab
*/
#ifndef _TSS_H
#define _TSS_H
@ -38,3 +36,4 @@ struct tss_entry_s {
} __attribute__ ((packed));
#endif /* _TSS_H */

View File

@ -1,3 +1,5 @@
/* vim: tabstop=4 shiftwidth=4 noexpandtab
*/
#ifndef TYPES_H
#define TYPES_H

View File

@ -1,4 +1,4 @@
/* vim: tabstop=4 noexpandtab shiftwidth=4
/* vim: tabstop=4 shiftwidth=4 noexpandtab
*
* Copyright (c) 2011 Kevin Lange. All rights reserved.
*
@ -155,3 +155,4 @@ int main(struct multiboot *mboot, uint32_t mboot_mag, uintptr_t esp)
return 0;
}