mirror of
https://github.com/opnsense/src.git
synced 2026-04-12 12:56:47 -04:00
15 lines
169 B
C
15 lines
169 B
C
#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);
|
|
}
|