diff options
author | Momchil Velikov <velco@fadata.bg> | 2002-01-23 00:31:52 +0200 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-01-22 14:31:52 -0800 |
commit | e64d0626b4e19630c519fa054828b6e9c3e2b161 (patch) | |
tree | 50776c386e475ef991d61b91cd8bd81eb7a69e3a /libiberty/configure | |
parent | d04fd40f86bb40d9267ef40419f021d6bcdeda23 (diff) | |
download | gcc-e64d0626b4e19630c519fa054828b6e9c3e2b161.zip gcc-e64d0626b4e19630c519fa054828b6e9c3e2b161.tar.gz gcc-e64d0626b4e19630c519fa054828b6e9c3e2b161.tar.bz2 |
configure.in (variable detection): Use arrays of unspecified size instead of plain integers.
* configure.in (variable detection): Use arrays of unspecified
size instead of plain integers.
From-SVN: r49103
Diffstat (limited to 'libiberty/configure')
-rwxr-xr-x | libiberty/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/configure b/libiberty/configure index be1fa94..a406d28 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -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 |