mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-27 00:33:30 +00:00
b3e7694832
Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
23 lines
320 B
C
23 lines
320 B
C
/*-
|
|
* This program is in the public domain
|
|
*/
|
|
|
|
#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);
|
|
}
|