mirror of
https://github.com/fadden/nulib2.git
synced 2025-08-05 08:24:22 +00:00
Merge pull request #15 from fweimer-rh/c99
configure: Fix C99 compatibility issue
This commit is contained in:
2
nufxlib/configure
vendored
2
nufxlib/configure
vendored
@@ -4033,7 +4033,7 @@ else
|
||||
int count;
|
||||
char buf[8];
|
||||
count = sprintf(buf, "123"); /* should return three */
|
||||
exit(count != 3);
|
||||
return count != 3;
|
||||
}
|
||||
|
||||
_ACEOF
|
||||
|
@@ -134,7 +134,7 @@ AC_CACHE_VAL(nufxlib_cv_sprintf_returns_int, [
|
||||
int count;
|
||||
char buf[8];
|
||||
count = sprintf(buf, "123"); /* should return three */
|
||||
exit(count != 3);
|
||||
return count != 3;
|
||||
}
|
||||
],
|
||||
[nufxlib_cv_sprintf_returns_int=yes], [nufxlib_cv_sprintf_returns_int=no],
|
||||
|
Reference in New Issue
Block a user