summaryrefslogtreecommitdiffstats
path: root/gl/m4/stdint.m4
diff options
context:
space:
mode:
Diffstat (limited to 'gl/m4/stdint.m4')
-rw-r--r--gl/m4/stdint.m414
1 files changed, 7 insertions, 7 deletions
diff --git a/gl/m4/stdint.m4 b/gl/m4/stdint.m4
index a2e8bdd..1cc57e6 100644
--- a/gl/m4/stdint.m4
+++ b/gl/m4/stdint.m4
@@ -1,5 +1,5 @@
1# stdint.m4 serial 34 1# stdint.m4 serial 34
2dnl Copyright (C) 2001-2009 Free Software Foundation, Inc. 2dnl Copyright (C) 2001-2010 Free Software Foundation, Inc.
3dnl This file is free software; the Free Software Foundation 3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it, 4dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved. 5dnl with or without modifications, as long as this notice is preserved.
@@ -396,12 +396,12 @@ AC_DEFUN([gl_INTEGER_TYPE_SUFFIX],
396 for glsuf in "$glsufu" ${glsufu}l ${glsufu}ll ${glsufu}i64; do 396 for glsuf in "$glsufu" ${glsufu}l ${glsufu}ll ${glsufu}i64; do
397 case $glsuf in 397 case $glsuf in
398 '') gltype1='int';; 398 '') gltype1='int';;
399 l) gltype1='long int';; 399 l) gltype1='long int';;
400 ll) gltype1='long long int';; 400 ll) gltype1='long long int';;
401 i64) gltype1='__int64';; 401 i64) gltype1='__int64';;
402 u) gltype1='unsigned int';; 402 u) gltype1='unsigned int';;
403 ul) gltype1='unsigned long int';; 403 ul) gltype1='unsigned long int';;
404 ull) gltype1='unsigned long long int';; 404 ull) gltype1='unsigned long long int';;
405 ui64)gltype1='unsigned __int64';; 405 ui64)gltype1='unsigned __int64';;
406 esac 406 esac
407 AC_COMPILE_IFELSE( 407 AC_COMPILE_IFELSE(