Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Workaround for #106521
  • Loading branch information
jkotas authored and github-actions committed Aug 18, 2024
commit f5c7a8967c690d48a53b18af894962be6d57de75
8 changes: 4 additions & 4 deletions src/native/external/zlib-ng/functable.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/

#if defined(_MSC_VER)
# include <intrin.h>
#endif

#include "zbuild.h"
#include "zendian.h"
#include "crc32_braid_p.h"
Expand All @@ -11,10 +15,6 @@
#include "functable.h"
#include "cpu_features.h"

#if defined(_MSC_VER)
# include <intrin.h>
#endif

/* Platform has pointer size atomic store */
#if defined(__GNUC__) || defined(__clang__)
# define FUNCTABLE_ASSIGN(VAR, FUNC_NAME) \
Expand Down
Loading