home *** CD-ROM | disk | FTP | other *** search
- /*
- * macros.h
- *
- * general purpose macros
- *
- * Written 4/87 by Scott Snyder (ssnyder@romeo.caltech.edu or @citromeo.bitnet)
- *
- */
-
- #define LINT_ARGS
- /*#define DEBUG*/
-
- #ifdef DEBUG
- # define debug(x) x
- # define STATIC
- #else
- # define debug(x)
- # define STATIC static
- #endif
-
- #define ever ;;
- #define until(c) while(!(c))
- #define true (1)
- #define false (0)
- #define maxfloat (1.701411e38)
- #define pi (3.1415926)
-