summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2007-09-09 17:10:10 +0000
committerBruno Haible <bruno@clisp.org>2007-09-09 17:10:10 +0000
commitd339512e0462b528144011094b1e7f79bdab10e2 (patch)
treee68bc09b6139ea123d6831bd6a93e7eb1820f277 /m4
parent6bfae955bd7d107adeb534b66cd339ae9ac2b989 (diff)
downloadgnulib-d339512e0462b528144011094b1e7f79bdab10e2.tar.gz
Oops, invert the direction of the test.
Diffstat (limited to 'm4')
-rw-r--r--m4/malloc.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/malloc.m4 b/m4/malloc.m4
index 36ca01a151..764f2a9fa1 100644
--- a/m4/malloc.m4
+++ b/m4/malloc.m4
@@ -33,7 +33,7 @@ AC_DEFUN([gl_CHECK_MALLOC_POSIX],
dnl some systems go to their knees when you do that. So assume that
dnl all Unix implementations of the function are POSIX compliant.
AC_TRY_COMPILE([],
- [#if !((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)
+ [#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
choke me
#endif
], [gl_cv_func_malloc_posix=yes], [gl_cv_func_malloc_posix=no])