mp-utils/src/yes.c
Mid Favila b7ac76440a Add splint checking to Makefile. Rewrite programs to pass lint.
Add an error handling mechanism to common, and rename it support.h.
2022-09-07 16:45:37 -04:00

14 lines
163 B
C

#include "support.h"
int main(int argc, char **argv)
{
if(argc > 1)
while(1)
puts(argv[1]);
else
while(1)
puts("y");
return 0;
}