diff options
-rw-r--r-- | stage3/def.h | 4 | ||||
-rw-r--r-- | stage3/font.h | 4 | ||||
-rw-r--r-- | stage3/gfx.h | 4 | ||||
-rw-r--r-- | stage3/halt.h | 4 | ||||
-rw-r--r-- | stage3/heap.h | 4 | ||||
-rw-r--r-- | stage3/interrupts.h | 4 | ||||
-rw-r--r-- | stage3/letters.h | 4 | ||||
-rw-r--r-- | stage3/memory.h | 4 | ||||
-rw-r--r-- | stage3/paging.h | 4 |
9 files changed, 18 insertions, 18 deletions
diff --git a/stage3/def.h b/stage3/def.h index 0f47f51..e973d5e 100644 --- a/stage3/def.h +++ b/stage3/def.h @@ -1,5 +1,5 @@ -#ifndef _DEF_H_ -#define _DEF_H_ +#ifndef DEF_H +#define DEF_H #define nil ((void *) 0x0) diff --git a/stage3/font.h b/stage3/font.h index fcb36bf..009d1de 100644 --- a/stage3/font.h +++ b/stage3/font.h @@ -1,5 +1,5 @@ -#ifndef _FONT_H_ -#define _FONT_H_ +#ifndef FONT_H +#define FONT_H #include "def.h" diff --git a/stage3/gfx.h b/stage3/gfx.h index cf89a9e..47e98db 100644 --- a/stage3/gfx.h +++ b/stage3/gfx.h @@ -1,5 +1,5 @@ -#ifndef _GFX_H_ -#define _GFX_H_ +#ifndef GFX_H +#define GFX_H #include "def.h" diff --git a/stage3/halt.h b/stage3/halt.h index b4d0d14..99b1717 100644 --- a/stage3/halt.h +++ b/stage3/halt.h @@ -1,5 +1,5 @@ -#ifndef _HALT_H_ -#define _HALT_H_ +#ifndef HALT_H +#define HALT_H void halt(); void panic(char *msg); diff --git a/stage3/heap.h b/stage3/heap.h index dd38693..bf02e43 100644 --- a/stage3/heap.h +++ b/stage3/heap.h @@ -1,5 +1,5 @@ -#ifndef _HEAP_H_ -#define _HEAP_H_ +#ifndef HEAP_H +#define HEAP_H #include "def.h" #include "paging.h" diff --git a/stage3/interrupts.h b/stage3/interrupts.h index 3eb6d4c..79d3488 100644 --- a/stage3/interrupts.h +++ b/stage3/interrupts.h @@ -1,5 +1,5 @@ -#ifndef _INTERRUPTS_H_ -#define _INTERRUPTS_H_ +#ifndef INTERRUPTS_H +#define INTERRUPTS_H void init_interrupts(); diff --git a/stage3/letters.h b/stage3/letters.h index a62d1cb..ffaa6d5 100644 --- a/stage3/letters.h +++ b/stage3/letters.h @@ -1,5 +1,5 @@ -#ifndef _LETTERS_H_ -#define _LETTERS_H_ +#ifndef LETTERS_H +#define LETTERS_H #include "def.h" diff --git a/stage3/memory.h b/stage3/memory.h index 56de49d..ba28b8a 100644 --- a/stage3/memory.h +++ b/stage3/memory.h @@ -1,5 +1,5 @@ -#ifndef _MEMORY_H_ -#define _MEMORY_H_ +#ifndef MEMORY_H +#define MEMORY_H #include "def.h" diff --git a/stage3/paging.h b/stage3/paging.h index cfcad6b..319b297 100644 --- a/stage3/paging.h +++ b/stage3/paging.h @@ -1,5 +1,5 @@ -#ifndef _PAGING_H_ -#define _PAGING_H_ +#ifndef PAGING_H +#define PAGING_H #include "def.h" |