diff options
Diffstat (limited to 'src/common/tuklib_config.h')
-rw-r--r-- | src/common/tuklib_config.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common/tuklib_config.h b/src/common/tuklib_config.h new file mode 100644 index 0000000..9d470ba --- /dev/null +++ b/src/common/tuklib_config.h @@ -0,0 +1,10 @@ +// If config.h isn't available, assume that the headers required by +// tuklib_common.h are available. This is required by crc32_tablegen.c. +#ifdef HAVE_CONFIG_H +# include "sysdefs.h" +#else +# include <stddef.h> +# include <stdbool.h> +# include <inttypes.h> +# include <limits.h> +#endif |