diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -720,10 +720,10 @@ char sizeof_wchar_t[sizeof (wchar_t)]; sizeof_wchar_t=0 while read symbol type offset size ; do - eval "size=$(( 0$size + 0 ))" + size=$(( 0$size + 0 )) symbol=${symbol#_} if [ "$type" = "C" ] ; then - size=$offset + size=$(( 0$offset + 0 )) fi case "$symbol" in sizeof* ) |