summaryrefslogtreecommitdiff
path: root/include/rune_logging.h
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-08-25 00:18:42 -0500
committerDanny Holman <dholman@gymli.org>2024-08-25 00:18:42 -0500
commit6b13ea53aeedb646b082a13bf16f67f8556087ae (patch)
tree7cf38f381a7af9daa9ad511c8f9abe58b41b119a /include/rune_logging.h
parenta002576056e26673f0141e46786f44f0b9c90b70 (diff)
core: refactor entire project root
Reorganize the project root such that each subsystem is placed into its own subdirectory. This allows the build system to select which subsystems to enable for a particular build. Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'include/rune_logging.h')
-rw-r--r--include/rune_logging.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rune_logging.h b/include/rune_logging.h
index a0b9e29..f8876db 100644
--- a/include/rune_logging.h
+++ b/include/rune_logging.h
@@ -11,6 +11,6 @@ enum log_level {
LOG_DEBUG
};
-void log_output(int level, const char *fmt, ...);
+RAPI void log_output(int level, const char *fmt, ...);
#endif