summaryrefslogtreecommitdiff
path: root/include/klib.h
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-03-27 11:39:12 -0400
committerFreya Murphy <freya@freyacat.org>2025-03-27 11:39:12 -0400
commit0ff301cda68669c59351e5854ce98f2cf460543f (patch)
treecfe8f976261962420ada64b821559b9da0a56841 /include/klib.h
parentadd compile_flags.txt for clangd lsp (diff)
downloadcomus-0ff301cda68669c59351e5854ce98f2cf460543f.tar.gz
comus-0ff301cda68669c59351e5854ce98f2cf460543f.tar.bz2
comus-0ff301cda68669c59351e5854ce98f2cf460543f.zip
pull upstream changes, add auto formatting
Diffstat (limited to 'include/klib.h')
-rw-r--r--include/klib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/klib.h b/include/klib.h
index c1d270c..60f59da 100644
--- a/include/klib.h
+++ b/include/klib.h
@@ -24,7 +24,7 @@
**
** @param ch The character to be printed
*/
-void put_char_or_code( int ch );
+void put_char_or_code(int ch);
/**
** Name: backtrace
@@ -35,7 +35,7 @@ void put_char_or_code( int ch );
** @param ebp Initial EBP to use
** @param args Number of function argument values to print
*/
-void backtrace( uint32_t *ebp, uint_t args );
+void backtrace(uint32_t *ebp, uint_t args);
/**
** Name: kpanic
@@ -50,8 +50,8 @@ void backtrace( uint32_t *ebp, uint_t args );
** @param msg[in] String containing a relevant message to be printed,
** or NULL
*/
-void kpanic( const char *msg );
+void kpanic(const char *msg);
-#endif /* !ASM_SRC */
+#endif /* !ASM_SRC */
#endif