aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorK.Kosako <kkosako0@gmail.com>2024-09-24 23:28:04 +0900
committerGitHub <noreply@github.com>2024-09-24 23:28:04 +0900
commit2da403bf58ac0d78f221578b96844416c40aedca (patch)
tree5ed8c9c81a482b27f1b78dfa2582916dc7090c6c
parent5666d4a9d576d5c19c9cf2cbd19079f49213407e (diff)
parent9ed430621a4f7a826068d2cdeb2297144ecb90e3 (diff)
downloadoniguruma-master.zip
oniguruma-master.tar.gz
oniguruma-master.tar.bz2
Merge pull request #310 from psumbera/masterHEADmaster
Fix Solaris GCC 14 build.
-rw-r--r--src/regint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regint.h b/src/regint.h
index 834a81c..9244879 100644
--- a/src/regint.h
+++ b/src/regint.h
@@ -120,7 +120,7 @@
#include <stdint.h>
#endif
-#if defined(HAVE_ALLOCA_H) && !defined(__GNUC__)
+#if defined(HAVE_ALLOCA_H)
#include <alloca.h>
#endif