mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 18:30:55 -05: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);
|
||
|
|
}
|