]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - tools/regression/ccd/layout/a.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / tools / regression / ccd / layout / a.c
1 /* $FreeBSD$ */
2 #include <unistd.h>
3
4 static uint32_t buf[512/4];
5 main()
6 {
7         u_int u = 0;
8
9         while (1) {
10                 buf[0] = u++;
11
12                 if (512 != write(1, buf, sizeof buf))
13                         break;
14         }
15         exit (0);
16 }