Skip to content

Commit

Permalink
Include cstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Montura committed Jan 20, 2024
1 parent 16d861f commit 8812020
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/main/c/jni-lib/include/api/dxfg_javac.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,15 @@

#ifdef __cplusplus
extern "C" {
# include <cstdint>
#include <cstdint>
#else
# include <stdint.h>
#include <stdint.h>
#endif

#if _MSC_VER && !__INTEL_COMPILER
#include <Windows.h>
#else
#include <cstring>
#endif

#include "graal_isolate.h"
Expand Down

0 comments on commit 8812020

Please sign in to comment.