From c7bcf94b1e70721d0f7bfb5ca383d996559c2559 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Mon, 1 Dec 2014 18:20:45 +0100 Subject: Small adjustments: - add missing vim modelines - idt_set_ex_handler, idt_set_irq_handler - inline inb,inw,outb,outw - add defines for exceptions and irqs --- kernel/lib/printf.c | 2 ++ kernel/lib/string.c | 1 + 2 files changed, 3 insertions(+) (limited to 'kernel/lib') diff --git a/kernel/lib/printf.c b/kernel/lib/printf.c index c1ef83b..68e08d8 100644 --- a/kernel/lib/printf.c +++ b/kernel/lib/printf.c @@ -116,3 +116,5 @@ int vsnprintf(char *buff, size_t len, const char* format, va_list ap){ *buff = '\0'; return result; } + +/* vim: set ts=4 sw=4 tw=0 noet :*/ diff --git a/kernel/lib/string.c b/kernel/lib/string.c index 6d26478..9dce27b 100644 --- a/kernel/lib/string.c +++ b/kernel/lib/string.c @@ -87,3 +87,4 @@ void *memset(void *dest, int val, size_t count) { return dest; } +/* vim: set ts=4 sw=4 tw=0 noet :*/ -- cgit v1.2.3