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 <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-09-23 18:34:30 +02:00
committed by Enrico Weigelt
parent 79d092cfb9
commit da42cb968c
2 changed files with 5 additions and 2 deletions

View File

@@ -291,8 +291,6 @@ extern _X_EXPORT void
ErrorF(const char *f, ...) ErrorF(const char *f, ...)
_X_ATTRIBUTE_PRINTF(1, 2); _X_ATTRIBUTE_PRINTF(1, 2);
void LogPrintMarkers(void);
extern _X_EXPORT void extern _X_EXPORT void
xorg_backtrace(void); xorg_backtrace(void);

View File

@@ -89,4 +89,9 @@ extern int xorgSyslogVerbosity;
*/ */
extern const char *xorgSyslogIdent; extern const char *xorgSyslogIdent;
/*
* print log markers into the log file
*/
void LogPrintMarkers(void);
#endif /* __XORG_OS_LOGGING_H */ #endif /* __XORG_OS_LOGGING_H */