mirror of
https://git.tukaani.org/xz.git
synced 2025-02-22 16:38:11 +00:00
This replaces bswap.h and integer.h. The tuklib module uses <byteswap.h> on GNU, <sys/endian.h> on *BSDs and <sys/byteorder.h> on Solaris, which may contain optimized code like inline assembly.
8 lines
121 B
C
8 lines
121 B
C
#ifdef HAVE_CONFIG_H
|
|
# include "sysdefs.h"
|
|
#else
|
|
# include <stddef.h>
|
|
# include <inttypes.h>
|
|
# include <limits.h>
|
|
#endif
|