Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 73 → Rev 86

/shark/trunk/ports/mesa/src-glut.dos/pc_hw/pc_hw.h
16,7 → 16,13
/*
* misc C definitions
*/
#ifdef FALSE
#undef FALSE
#endif
#define FALSE 0
#ifdef TRUE
#undef TRUE
#endif
#define TRUE !FALSE
 
#define MIN(x,y) (((x) < (y)) ? (x) : (y))