mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-04-09 00:03:55 +00:00
Check for different endian.h includes and variants of le32toh.
This commit is contained in:
parent
fae0f0d493
commit
2736118f82
6 changed files with 33 additions and 2 deletions
5
stream.c
5
stream.c
|
|
@ -39,6 +39,11 @@
|
|||
#ifdef HAVE_ERRNO_H
|
||||
# include <errno.h>
|
||||
#endif
|
||||
#ifdef HAVE_ENDIAN_H
|
||||
# include <endian.h>
|
||||
#elif HAVE_SYS_ENDIAN_H
|
||||
# include <sys/endian.h>
|
||||
#endif
|
||||
|
||||
/* LZMA C Wrapper */
|
||||
#include "lzma/C/LzmaLib.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue