We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 322a7af commit e03fb84Copy full SHA for e03fb84
common/common.h
@@ -94,8 +94,13 @@ void wall_message(const char *fmt, ...)
94
95
typedef enum { MSG_STDERR, MSG_SYSLOG, MSG_QUIET } message_t;
96
typedef enum { DBG_NO, DBG_YES } debug_message_t;
97
-void set_aumessage_mode(message_t mode, debug_message_t debug);
98
99
AUDIT_HIDDEN_END
+
100
+// Leave this exposed until 2027, then hide it for good.
101
+// This allows programs already compiled to keep working.
102
+// But new programs can't see it.
103
+void set_aumessage_mode(message_t mode, debug_message_t debug);
104
105
#endif
106
0 commit comments