diff options
Diffstat (limited to 'src/colors.h')
-rw-r--r-- | src/colors.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/colors.h b/src/colors.h index 99d1bc0f..f350d510 100644 --- a/src/colors.h +++ b/src/colors.h @@ -1,6 +1,15 @@ #ifndef __COLORS_H__ #define __COLORS_H__ +#include "config.h" +#ifdef HAVE_INTTYPES_H +#include <inttypes.h> +#else +#ifdef HAVE_STDINT_H +#include <stdint.h> +#endif +#endif + #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ |