* configure.in (variable detection): Use arrays of unspecified

size instead of plain integers.
This commit is contained in:
Richard Henderson
2002-01-22 22:32:35 +00:00
parent 9a2e995d8a
commit 58b1717a5e
3 changed files with 7 additions and 2 deletions

2
libiberty/configure vendored
View File

@@ -2803,7 +2803,7 @@ else
#include "confdefs.h"
int *p;
int main() {
extern int $v; p = &$v;
extern int $v []; p = &$v;
; return 0; }
EOF
if { (eval echo configure:2810: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then