freebsd-src/bin/dd/gen.c
Thomas Quinot b111f2a4d0 MFC r295749:
Reorganize the handling all-zeroes terminal block in sparse mode

PR: 189284
(original PR whose fix introduced this bug)

PR: 207092
2016-04-19 07:34:31 +00:00

25 lines
336 B
C

/*-
* This program is in the public domain
*
* $FreeBSD$
*/
#include <stdio.h>
#include <string.h>
int
main(int argc, char **argv)
{
int i;
if (argc > 1 && !strcmp(argv[1], "189284")) {
fputs("ABCDEFGH", stdout);
for (i = 0; i < 8; i++)
putchar(0);
} else {
for (i = 0; i < 256; i++)
putchar(i);
}
return (0);
}