aboutsummaryrefslogtreecommitdiff
path: root/kernel/include/libk/stdio.h
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-12-06 20:14:28 -0500
committerRaghuram Subramani <raghus2247@gmail.com>2025-12-06 20:14:28 -0500
commit2cf843ae6de1f35e5a5d3a947d0179337e82752f (patch)
tree7e7983be37568fb0f9cbd806de94573a61df83ca /kernel/include/libk/stdio.h
parent096d9ab61281062b6672c6c9f413de97e034d3f7 (diff)
misc: C++->CHEADmain
I know; it's POINTLESS! However, I do enjoy programming in C more than C++ so I ended up spending the hour it takes converting this project from C++ to C.
Diffstat (limited to 'kernel/include/libk/stdio.h')
-rw-r--r--kernel/include/libk/stdio.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/kernel/include/libk/stdio.h b/kernel/include/libk/stdio.h
index 44050dd..f944fe4 100644
--- a/kernel/include/libk/stdio.h
+++ b/kernel/include/libk/stdio.h
@@ -22,10 +22,6 @@
#include <stdarg.h>
#include <stddef.h>
-#ifdef __cplusplus
-extern "C" {
-#endif
-
typedef int (*_printf_engine_output_func)(const char *str,
size_t len,
void *state);
@@ -43,8 +39,4 @@ int vsnprintf(char *str, size_t len, const char *fmt, va_list ap);
void printk(const char *from, const char *msg, ...);
void printk_raw(const char *msg, ...);
-#ifdef __cplusplus
-}
-#endif
-
#endif