diff --git a/lib/utils.h b/lib/utils.h index 7fc7ff0..3d25a54 100644 --- a/lib/utils.h +++ b/lib/utils.h @@ -5,3 +5,10 @@ #define LOBYTE(c) (<(c)) #define NOP asm { nop } + +#ifndef __KICKC__ +// KickC defaults these, while other C compilers do not +// this makes syntax highlight work in common C editors +typedef unsigned char byte; +typedef unsigned int word; +#endif