diff options
author | Richard Braun <rbraun@sceen.net> | 2017-04-29 22:59:14 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-04-29 22:59:14 +0200 |
commit | 224179f50dfeb4ba2598505e4c9fcf524639439d (patch) | |
tree | eda7d9dc3275da83252232ad96c2846db71c73bf /kern/printf.h | |
parent | a0563b4eec601eadc89081eeb7e14edd193ef95d (diff) |
kern/printf: complete renaming from printk to printf
Diffstat (limited to 'kern/printf.h')
-rw-r--r-- | kern/printf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kern/printf.h b/kern/printf.h index 16a7b584..6643d664 100644 --- a/kern/printf.h +++ b/kern/printf.h @@ -24,8 +24,8 @@ * See the sprintf module for information about the supported formats. */ -#ifndef _KERN_PRINTK_H -#define _KERN_PRINTK_H +#ifndef _KERN_PRINTF_H +#define _KERN_PRINTF_H #ifndef _STDIO_H #error "do not use <kern/printf.h> directly; include <stdio.h> instead" @@ -39,4 +39,4 @@ int printf(const char *format, ...) __format_printf(1, 2); int vprintf(const char *format, va_list ap) __format_printf(1, 0); void printf_setup(void); -#endif /* _KERN_PRINTK_H */ +#endif /* _KERN_PRINTF_H */ |