From 02a0c882275959c0fbd58754418ecc1218821e76 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 18 Jun 2021 22:30:25 +0200 Subject: Renamed device prefix from 'io_' to 'dev_' --- libs/libc/inc/print.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/libc/inc/print.h') diff --git a/libs/libc/inc/print.h b/libs/libc/inc/print.h index 6997796..af06318 100644 --- a/libs/libc/inc/print.h +++ b/libs/libc/inc/print.h @@ -16,9 +16,9 @@ NORETURN void panic(const char *format, ...) NONNULL; #ifdef USER #include int vfprintf(const char *path, const char *format, va_list ap) NONNULL; -int viprintf(enum io_type io, const char *format, va_list ap) NONNULL; +int vdprintf(enum dev_type io, const char *format, va_list ap) NONNULL; int fprintf(const char *path, const char *format, ...) NONNULL; -int iprintf(enum io_type io, const char *format, ...) NONNULL; +int dprintf(enum dev_type io, const char *format, ...) NONNULL; int log(const char *format, ...) NONNULL; NORETURN void err(int code, const char *format, ...) NONNULL; #else -- cgit v1.2.3