mirror of
https://git.tukaani.org/xz.git
synced 2025-02-23 17:08:13 +00:00
13 lines
317 B
C
13 lines
317 B
C
// SPDX-License-Identifier: 0BSD
|
|
|
|
// 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
|