mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
11 lines
283 B
C
11 lines
283 B
C
// 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
|