append build date at the end of help

This commit is contained in:
kanjitalk755 2022-07-01 10:12:34 +09:00
parent 5777129302
commit 756021f267
4 changed files with 4 additions and 0 deletions

View File

@ -410,6 +410,7 @@ static void usage(const char *prg_name)
);
LoadPrefs(NULL); // read the prefs file so PrefsPrintUsage() will print the correct default values
PrefsPrintUsage();
printf("\nBuild Date: %s\n", __DATE__);
exit(0);
}

View File

@ -217,6 +217,7 @@ static void usage(const char *prg_name)
);
LoadPrefs(NULL); // read the prefs file so PrefsPrintUsage() will print the correct default values
PrefsPrintUsage();
printf("\nBuild Date: %s\n", __DATE__);
exit(0);
}

View File

@ -375,6 +375,7 @@ static void usage(const char *prg_name)
printf("\nUnix options:\n");
printf(" --display STRING\n X display to use\n");
PrefsPrintUsage();
printf("\nBuild Date: %s\n", __DATE__);
exit(0);
}

View File

@ -158,6 +158,7 @@ static void usage(const char *prg_name)
printf("\nUnix options:\n");
printf(" --display STRING\n X display to use\n");
PrefsPrintUsage();
printf("\nBuild Date: %s\n", __DATE__);
exit(0);
}