Some systems define this already.

This commit is contained in:
sin 2014-10-22 17:41:16 +01:00
parent 1c467fce7a
commit 11ca2b408d
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@
#endif /* DEBUG */
#define LEN(x) (sizeof(x) / sizeof(*(x)))
#undef MIN
#define MIN(x, y) ((x) < (y) ? (x) : (y))
#define ISODD(x) ((x) & 1)
#define CONTROL(c) ((c) ^ 0x40)