Imported from ../bash-2.0.tar.gz.

This commit is contained in:
Jari Aalto 1996-12-23 17:02:34 +00:00
commit ccc6cda312
502 changed files with 91988 additions and 69123 deletions

20
support/zecho.c Normal file
View file

@ -0,0 +1,20 @@
/* zecho - bare-bones echo */
#include <stdio.h>
int
main(argc, argv)
int argc;
char **argv;
{
argv++;
while (*argv) {
(void)printf("%s", *argv);
if (*++argv)
putchar(' ');
}
putchar('\n');
exit(0);
}