tuklib_config.h 317 B

123456789101112
  1. // SPDX-License-Identifier: 0BSD
  2. // If config.h isn't available, assume that the headers required by
  3. // tuklib_common.h are available. This is required by crc32_tablegen.c.
  4. #ifdef HAVE_CONFIG_H
  5. # include "sysdefs.h"
  6. #else
  7. # include <stddef.h>
  8. # include <stdbool.h>
  9. # include <inttypes.h>
  10. # include <limits.h>
  11. #endif