summaryrefslogtreecommitdiff
path: root/mos/sys/inc/kern/trace.h
diff options
context:
space:
mode:
Diffstat (limited to 'mos/sys/inc/kern/trace.h')
-rw-r--r--mos/sys/inc/kern/trace.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/mos/sys/inc/kern/trace.h b/mos/sys/inc/kern/trace.h
new file mode 100644
index 0000000..820478e
--- /dev/null
+++ b/mos/sys/inc/kern/trace.h
@@ -0,0 +1,17 @@
+/*
+ * Copyright (c) 2025, Ian Moffett.
+ * Provided under the BSD-3 clause.
+ */
+
+#ifndef _KERN_TRACE_H_
+#define _KERN_TRACE_H_
+
+/*
+ * Write a raw null terminated string to the system
+ * trace logs
+ *
+ * @str: String to write
+ */
+void trace_raw(const char *str);
+
+#endif /* !_KERN_TRACE_H_ */