diff options
Diffstat (limited to 'src/kernel/lib')
-rw-r--r-- | src/kernel/lib/lib.h | 2 | ||||
-rw-r--r-- | src/kernel/lib/memory.c | 2 | ||||
-rw-r--r-- | src/kernel/lib/stdio.h | 2 | ||||
-rw-r--r-- | src/kernel/lib/stdio/debug.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h index 986e522..7ebae9a 100644 --- a/src/kernel/lib/lib.h +++ b/src/kernel/lib/lib.h @@ -42,4 +42,4 @@ void memory_print(); uint32_t memory_get_all(); -#endif +#endif
\ No newline at end of file diff --git a/src/kernel/lib/memory.c b/src/kernel/lib/memory.c index 6238535..c244052 100644 --- a/src/kernel/lib/memory.c +++ b/src/kernel/lib/memory.c @@ -116,4 +116,4 @@ int memory_init(uint32_t multiboot_address) } } return ret; -} +}
\ No newline at end of file diff --git a/src/kernel/lib/stdio.h b/src/kernel/lib/stdio.h index 6da0f37..8668775 100644 --- a/src/kernel/lib/stdio.h +++ b/src/kernel/lib/stdio.h @@ -17,4 +17,4 @@ void serial_vprintf(const char *fmt, va_list args); void serial_printf(const char *fmt, ...); -#endif +#endif
\ No newline at end of file diff --git a/src/kernel/lib/stdio/debug.c b/src/kernel/lib/stdio/debug.c index 68f0785..0942d49 100644 --- a/src/kernel/lib/stdio/debug.c +++ b/src/kernel/lib/stdio/debug.c @@ -59,4 +59,4 @@ void serial_printf(const char *fmt, ...) va_start(args, fmt); serial_vprintf(fmt, args); va_end(args); -} +}
\ No newline at end of file |