\"handy.h\"

Bob Peirce rbp%investor.uucp at BRL.ARPA
Mon Sep 9 06:55:27 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