}
#endif /* WITH_WATCH8BIT */
+#ifdef WITH_WATCH8BIT
+void output_header(wchar_t *restrict wcommand, int wcommand_columns, int wcommand_characters, double interval)
+#else
void output_header(char *restrict command, double interval)
+#endif /* WITH_WATCH8BIT */
{
time_t t = time(NULL);
char *ts = ctime(&t);
}
if (show_title)
+#ifdef WITH_WATCH8BIT
+ output_header(wcommand, wcommand_columns, wcommand_characters, interval);
+#else
output_header(command, interval);
+#endif /* WITH_WATCH8BIT */
if (run_command(command, command_argv))
break;