From da42cb968c9c9f321cbc0e69c7e47982e6f8c14f Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 23 Sep 2025 18:34:30 +0200 Subject: [PATCH] os: move LogPrintMarkers() declaration into private header Not exported, not used by any external modules, so no need to have that declaration in a public SDK header. Signed-off-by: Enrico Weigelt, metux IT consult --- include/os.h | 2 -- os/log_priv.h | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/include/os.h b/include/os.h index 13febb3320..da6b3d6fe7 100644 --- a/include/os.h +++ b/include/os.h @@ -291,8 +291,6 @@ extern _X_EXPORT void ErrorF(const char *f, ...) _X_ATTRIBUTE_PRINTF(1, 2); -void LogPrintMarkers(void); - extern _X_EXPORT void xorg_backtrace(void); diff --git a/os/log_priv.h b/os/log_priv.h index 562ea9defc..0042f02482 100644 --- a/os/log_priv.h +++ b/os/log_priv.h @@ -89,4 +89,9 @@ extern int xorgSyslogVerbosity; */ extern const char *xorgSyslogIdent; +/* + * print log markers into the log file + */ +void LogPrintMarkers(void); + #endif /* __XORG_OS_LOGGING_H */