summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-01-30 14:20:15 +0000
committerJim Meyering <jim@meyering.net>1999-01-30 14:20:15 +0000
commit4f1bb201e360e5e3082b1045ad56c3eb14453471 (patch)
treecd76abe0ae7ed15abb70642b682713ba870098cc
parent7094c6fb4ee04f573ad855d2001c3f087c1d6e30 (diff)
downloadgnulib-4f1bb201e360e5e3082b1045ad56c3eb14453471.tar.gz
use AC_DEFINE_UNQUOTED, now
-rw-r--r--m4/uintmax_t.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/uintmax_t.m4 b/m4/uintmax_t.m4
index 8c0189bca0..3501f7739b 100644
--- a/m4/uintmax_t.m4
+++ b/m4/uintmax_t.m4
@@ -19,8 +19,8 @@ AC_DEFUN(jm_AC_TYPE_UINTMAX_T,
test $ac_cv_type_unsigned_long_long = yes \
&& ac_type='unsigned long long' \
|| ac_type='unsigned long'
- AC_DEFINE(uintmax_t, $ac_type,
- [ Define to \`unsigned long' or \`unsigned long long'
+ AC_DEFINE_UNQUOTED(uintmax_t, $ac_type,
+[ Define to \`unsigned long' or \`unsigned long long'
if <inttypes.h> doesn't define.])
fi
])