1 /* vi: set sw=4 ts=4: */
3 * yes implementation for busybox
5 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
10 /* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
12 /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
14 * Size reductions and removed redundant applet name prefix from error messages.
19 /* This is a NOFORK applet. Be very careful! */
21 int yes_main(int argc
, char **argv
);
22 int yes_main(int argc
, char **argv
)
40 } while (putchar('\n') != EOF
);
42 bb_perror_nomsg_and_die();