A
Angel
I'm sure beyond reasonable doubt that Eric knows that.
He raises an excellent point: we can't judge whether a program is
bug-free without knowing what requirements it's intended to satisfy.
So how about this implementation of IEFBR14 (intended only for
conforming hosted C implementations):
int main(void) { return 0; }
Mm, in that case I present my implementations of /bin/true and
/bin/false that do not depend on "magic" numbers.
#include <stdlib.h>
int main(void) { return EXIT_SUCCESS; }
#include <stdlib.h>
int main(void) { return EXIT_FAILURE; }