opnsense-src/tools/regression/ccd/layout/a.c
Warner Losh 2a63c3be15 Remove $FreeBSD$: one-line .c comment pattern
Remove /^/[*/]\s*\$FreeBSD\$.*\n/
2023-08-16 11:54:29 -06:00

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);
}