]> CyberLeo.Net >> Repos - FreeBSD/releng/8.2.git/blob - bin/dd/gen.c
MFS r217408: Don't use amdc1e on XEN && !XEN_PRIVILEGED. This fixes a
[FreeBSD/releng/8.2.git] / bin / dd / gen.c
1 /*-
2  * This program is in the public domain
3  *
4  * $FreeBSD$
5  */
6
7 #include <stdio.h>
8
9 int
10 main(int argc __unused, char **argv __unused)
11 {
12         int i;
13
14         for (i = 0; i < 256; i++)
15                 putchar(i);
16         return (0);
17 }