summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-06-22 05:09:36 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-06-22 05:09:36 +0000
commited7cd88b0d7e89ea34aff78903fa83c4c5d6bb32 (patch)
treeb078ed0863bdf7fb5f2ee490440f0a1f34d99b86 /configure
parenta719a5044de1e6c68df533367714fd396dbf6c74 (diff)
2000-06-22
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@773 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure')
-rw-r--r--configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index fe9be2281a..726207a187 100644
--- a/configure
+++ b/configure
@@ -2579,7 +2579,7 @@ else
#include "confdefs.h"
#include <alloca.h>
int main() {
-char *p = alloca(2 * sizeof(int));
+void *p = alloca(2 * sizeof(int));
; return 0; }
EOF
if { (eval echo configure:2586: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
@@ -3682,7 +3682,7 @@ else
int main() {
/* Ultrix mips cc rejects this. */
-typedef int charset[2]; const charset x;
+typedef int charset[2]; const charset x = {0,0};
/* SunOS 4.1.1 cc rejects this. */
char const *const *ccp;
char **p;