mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
Rename header guards
This commit is contained in:
parent
49a3b5b8f9
commit
1feb80a7fd
5 changed files with 10 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
|||
#ifndef TAILIX_KERNEL_INCLUDED_CONSOLE
|
||||
#define TAILIX_KERNEL_INCLUDED_CONSOLE 1
|
||||
#ifndef KERNELMQ_INCLUDED_CONSOLE
|
||||
#define KERNELMQ_INCLUDED_CONSOLE 1
|
||||
|
||||
// Hardware text mode color constants.
|
||||
enum vga_color {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef TAILIX_KERNEL_INCLUDED_GDT
|
||||
#define TAILIX_KERNEL_INCLUDED_GDT 1
|
||||
#ifndef KERNELMQ_INCLUDED_GDT
|
||||
#define KERNELMQ_INCLUDED_GDT 1
|
||||
|
||||
void gdt_initialize();
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef TAILIX_KERNEL_INCLUDED_IDT
|
||||
#define TAILIX_KERNEL_INCLUDED_IDT 1
|
||||
#ifndef KERNELMQ_INCLUDED_IDT
|
||||
#define KERNELMQ_INCLUDED_IDT 1
|
||||
|
||||
void idt_initialize();
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef TAILIX_KERNEL_INCLUDED_LOGGER
|
||||
#define TAILIX_KERNEL_INCLUDED_LOGGER 1
|
||||
#ifndef KERNELMQ_INCLUDED_LOGGER
|
||||
#define KERNELMQ_INCLUDED_LOGGER 1
|
||||
|
||||
void logger_initialize();
|
||||
void logger_info(const char *s);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef TAILIX_KERNEL_INCLUDED_UTIL
|
||||
#define TAILIX_KERNEL_INCLUDED_UTIL 1
|
||||
#ifndef KERNELMQ_INCLUDED_UTIL
|
||||
#define KERNELMQ_INCLUDED_UTIL 1
|
||||
|
||||
static inline unsigned int strlen(const char *s);
|
||||
|
||||
|
|
Loading…
Reference in a new issue