"handy.h"

Bob Peirce rbp at investor.UUCP
Fri Sep 6 10:50:12 AEST 1985


> my personal favorite:
> 
>     #define EVER ;;
> 
> then you can say:
> 
>     for(EVER) {
>         stuff;
>         }

Why not just

#define	FOREVER	for(;;)

Then you can say

	FOREVER{
	    stuff;
	}

I actually have that in my "local.h" file, yet I persist in using "for(;;)!



More information about the Comp.lang.c mailing list