Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / tests / echo-n.c
1 #ifdef HAVE_CONFIG_H
2 #include <config.h>
3 #endif
4
5 #include <stdio.h>
6
7 int
8 main(int argc, char **argv)
9 {
10 int i;
11 for (i = 1; i < argc; i++) {
12 printf("%s", argv[i]);
13 if (argc > i + 1)
14 printf(" ");
15 }
16 fflush(stdout);
17 return 0;
18 }