1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-15 07:54:13 +00:00

Remove stderr output from mkvdate. (#255)

This shows up on every build and isn't needed.
This commit is contained in:
Bruce Mitchener 2021-01-21 00:29:38 +07:00 committed by GitHub
parent addaad51fc
commit a427d9f394
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,6 @@
int main(void) {
long dtime;
time(&dtime);
fprintf(stderr, "MDate: %ld\n", dtime);
printf("long MDate= %ld;\n", dtime);
return (0);
}
@ -57,9 +56,6 @@ int main(void) {
* warnings about differing sized types.
*/
gettimeofday(&time, NULL);
fprintf(stderr, "MDate: %ld\n", (long)time.tv_sec);
fprintf(stderr, "Version: %s\n", ctime(&time.tv_sec));
printf("#include <time.h>\n");
printf("time_t MDate= %ld;\n", (long)time.tv_sec);
return (0);