| # | Line 8 | Line 8 | static const char RCSid[] = "$Id$"; | |
|---|---|---|
| 8 | */ | |
| 9 | ||
| 10 | #include "standard.h" | |
| 11 | + | #include "platform.h" |
| 12 | #include "color.h" | |
| 13 | #include "font.h" | |
| 14 | ||
| # | Line 32 | Line 33 | int cwidth; /* computed character width */ | |
| 33 | unsigned char *ourbitmap; /* our output bitmap */ | |
| 34 | int xsiz, ysiz; /* bitmap dimensions */ | |
| 35 | int xdim; /* size of horizontal scan (bytes) */ | |
| 36 | + | |
| 37 | + | /* conflicting def's in param.h */ |
| 38 | + | #undef tstbit |
| 39 | + | #undef setbit |
| 40 | + | #undef clrbit |
| 41 | + | #undef tglbit |
| 42 | ||
| 43 | #define bitop(x,y,op) (ourbitmap[(y)*xdim+((x)>>3)] op (1<<((x)&7))) | |
| 44 | #define tstbit(x,y) bitop(x,y,&) | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |