1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00
freebsd/bin/dd/gen.c
2005-01-10 08:39:26 +00:00

18 lines
202 B
C

/*-
* This program is in the public domain
*
* $FreeBSD$
*/
#include <stdio.h>
int
main(int argc __unused, char **argv __unused)
{
int i;
for (i = 0; i < 256; i++)
putchar(i);
return (0);
}