mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 09:56:47 -05:00
17 lines
185 B
C
17 lines
185 B
C
|
|
/* $FreeBSD$ */
|
||
|
|
#include <unistd.h>
|
||
|
|
|
||
|
|
static uint32_t buf[512/4];
|
||
|
|
main()
|
||
|
|
{
|
||
|
|
u_int u = 0;
|
||
|
|
|
||
|
|
while (1) {
|
||
|
|
buf[0] = u++;
|
||
|
|
|
||
|
|
if (512 != write(1, buf, sizeof buf))
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
exit (0);
|
||
|
|
}
|