Skip to content

Commit 861849c

Browse files
committed
[PR #1481] os: unexport LogHdrMessageVerb()
PR: #1481
1 parent b0df354 commit 861849c

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

include/os.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -257,13 +257,6 @@ extern _X_EXPORT void
257257
LogMessage(MessageType type, const char *format, ...)
258258
_X_ATTRIBUTE_PRINTF(2, 3);
259259

260-
extern _X_EXPORT void
261-
LogHdrMessageVerb(MessageType type, int verb,
262-
const char *msg_format, va_list msg_args,
263-
const char *hdr_format, ...)
264-
_X_ATTRIBUTE_PRINTF(3, 0)
265-
_X_ATTRIBUTE_PRINTF(5, 6);
266-
267260
extern _X_EXPORT void
268261
FatalError(const char *f, ...)
269262
_X_ATTRIBUTE_PRINTF(1, 2)

os/log_priv.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,10 @@ extern const char *xorgSyslogIdent;
9494
*/
9595
void LogPrintMarkers(void);
9696

97+
void LogHdrMessageVerb(MessageType type, int verb,
98+
const char *msg_format, va_list msg_args,
99+
const char *hdr_format, ...)
100+
_X_ATTRIBUTE_PRINTF(3, 0)
101+
_X_ATTRIBUTE_PRINTF(5, 6);
102+
97103
#endif /* __XORG_OS_LOGGING_H */

0 commit comments

Comments
 (0)