diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2010-04-08 01:11:46 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2010-04-13 01:26:35 (GMT) |
commit | 74da141e618ef99959d509cb2e7be35a348a39db (patch) | |
tree | 88ebc38b381a1021fc2d74864a71e230ae591c3d /gl/m4/stdint.m4 | |
parent | c63a4f726a0b6ad8cf6040f947754a81fd4683bb (diff) | |
download | monitoring-plugins-74da141e618ef99959d509cb2e7be35a348a39db.tar.gz |
Sync with the latest Gnulib code (177f525)
Signed-off-by: Thomas Guyot-Sionnest <dermoth@aei.ca>
Diffstat (limited to 'gl/m4/stdint.m4')
-rw-r--r-- | gl/m4/stdint.m4 | 14 |
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 |
2 | dnl Copyright (C) 2001-2009 Free Software Foundation, Inc. | 2 | dnl Copyright (C) 2001-2010 Free Software Foundation, Inc. |
3 | dnl This file is free software; the Free Software Foundation | 3 | dnl This file is free software; the Free Software Foundation |
4 | dnl gives unlimited permission to copy and/or distribute it, | 4 | dnl gives unlimited permission to copy and/or distribute it, |
5 | dnl with or without modifications, as long as this notice is preserved. | 5 | dnl 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( |