static void __attribute__ ((__noreturn__)) usage(FILE * out)
{
- fprintf(out, _("Usage: %s [options]\n"),
- program_invocation_short_name);
+ fputs(_("\nUsage:\n"), out);
+ fprintf(out,
+ _(" %s [options]\n"), program_invocation_short_name);
- fprintf(out, _("\nOptions:\n"
- " -r, --random generate random-based uuid\n"
- " -t, --time generate time-based uuid\n"
- " -V, --version output version information and exit\n"
- " -h, --help display this help and exit\n\n"));
+ fputs(_("\nOptions:\n"), out);
+ fputs(_(" -r, --random generate random-based uuid\n"
+ " -t, --time generate time-based uuid\n"
+ " -V, --version output version information and exit\n"
+ " -h, --help display this help and exit\n\n"), out);
exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);
}