Skip to content

Commit da42cb9

Browse files
committed
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 <[email protected]>
1 parent 79d092c commit da42cb9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

include/os.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,6 @@ extern _X_EXPORT void
291291
ErrorF(const char *f, ...)
292292
_X_ATTRIBUTE_PRINTF(1, 2);
293293

294-
void LogPrintMarkers(void);
295-
296294
extern _X_EXPORT void
297295
xorg_backtrace(void);
298296

os/log_priv.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,9 @@ extern int xorgSyslogVerbosity;
8989
*/
9090
extern const char *xorgSyslogIdent;
9191

92+
/*
93+
* print log markers into the log file
94+
*/
95+
void LogPrintMarkers(void);
96+
9297
#endif /* __XORG_OS_LOGGING_H */

0 commit comments

Comments
 (0)