version 1.36 | | version 1.37 |
---|
| | |
/* | | /* |
* static char *rcsid_define_h = | | * static char *rcsid_define_h = |
* "$Id: define.h,v 1.36 2001/08/29 07:14:16 mwedel Exp $"; | | * "$Id: define.h,v 1.37 2001/09/26 21:40:38 garbled Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
/* Decstations have trouble with fabs()... */ | | /* Decstations have trouble with fabs()... */ |
#define FABS(x) (x<0?-x:x) | | #define FABS(x) (x<0?-x:x) |
| | |
| | #ifdef __NetBSD__ |
| | #include <sys/param.h> |
| | #endif |
#ifndef MIN | | #ifndef MIN |
#define MIN(x,y) ((x)<(y)?(x):(y)) | | #define MIN(x,y) ((x)<(y)?(x):(y)) |
#endif | | #endif |
| | |
#define DARK_FACE2_NAME "dark2.111" | | #define DARK_FACE2_NAME "dark2.111" |
#define DARK_FACE3_NAME "dark3.111" | | #define DARK_FACE3_NAME "dark3.111" |
| | |
| | /* |
| | * Defines for the luck/random functions to make things more readable |
| | */ |
| | |
| | #define PREFER_HIGH 1 |
| | #define PREFER_LOW 0 |
| | |
/* Simple function we use below to keep adding to the same string | | /* Simple function we use below to keep adding to the same string |
* but also make sure we don't overwrite that string. | | * but also make sure we don't overwrite that string. |
*/ | | */ |