diff options
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/unix/configure b/unix/configure index 8fbaebc..96e50d9 100755 --- a/unix/configure +++ b/unix/configure @@ -18734,11 +18734,13 @@ cat >>conftest.$ac_ext <<_ACEOF int StackGrowsUp(int *parent) { int here; - return (&here < parent); + if (parent) + return (&here < parent); + else + return StackGrowsUp(&here); } int main (int argc, char *argv[]) { - int foo; - return StackGrowsUp(&foo); + return StackGrowsUp(0); } _ACEOF |