]> git.lizzy.rs Git - zlib.git/commitdiff
Remove unnecessary include for byte swap built-in [Bosmans].
authorMark Adler <madler@alumni.caltech.edu>
Tue, 14 Feb 2012 07:02:13 +0000 (23:02 -0800)
committerMark Adler <madler@alumni.caltech.edu>
Tue, 14 Feb 2012 07:03:36 +0000 (23:03 -0800)
zutil.h

diff --git a/zutil.h b/zutil.h
index 5fcd4e63f94c670d78f2a5a24f1d00a41485bfe8..de42dfb6843d92789ce8dbe35f5d3ba04801f639 100644 (file)
--- a/zutil.h
+++ b/zutil.h
@@ -252,7 +252,6 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
 #    pragma intrinsic(_byteswap_ulong)
 #    define ZSWAP32(q) _byteswap_ulong(q)
 #  elif defined(__GNUC__) && ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))
-#    include <byteswap.h>
 #    define ZSWAP32(q) __builtin_bswap32(q)
 #  endif
 #endif