From 05498860e8f7b1e8bb27880bc7526de026694804 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 26 Mar 2021 21:55:50 +0100 Subject: Renamed libs Cleaner and more flexible. --- libc/inc/print.h | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 libc/inc/print.h (limited to 'libc/inc/print.h') diff --git a/libc/inc/print.h b/libc/inc/print.h deleted file mode 100644 index 58b5dc6..0000000 --- a/libc/inc/print.h +++ /dev/null @@ -1,27 +0,0 @@ -// MIT License, Copyright (c) 2020 Marvin Borner - -#ifndef PRINT_H -#define PRINT_H - -#include "arg.h" -#include - -int printf(const char *format, ...); -int vprintf(const char *format, va_list ap); -int sprintf(char *str, const char *format, ...); -int vsprintf(char *str, const char *format, va_list ap); -int print(const char *str); -NORETURN void panic(const char *format, ...); - -#ifdef userspace -int vfprintf(const char *path, const char *format, va_list ap); -int fprintf(const char *path, const char *format, ...); -int log(const char *format, ...); -int err(int code, const char *format, ...); -#else -#include -int print_app(enum stream_defaults id, const char *proc_name, const char *str); -void print_trace(u32 count); -#endif - -#endif -- cgit v1.2.3