mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-03 12:35:02 +00:00
18 lines
201 B
C
18 lines
201 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);
|
||
|
}
|