diff options
| author | Paul Eggert | 2011-02-18 23:28:29 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-02-18 23:28:29 -0800 |
| commit | 5f90be1bb73a4cb8c277476f2c9c9f59f0074bbb (patch) | |
| tree | 0ae73daf66f91b368b3e4d7b3cb4d5afa4500976 /lib | |
| parent | f12f551b2c38748ed10ec8c350faa23516f7c705 (diff) | |
| download | emacs-5f90be1bb73a4cb8c277476f2c9c9f59f0074bbb.tar.gz emacs-5f90be1bb73a4cb8c277476f2c9c9f59f0074bbb.zip | |
Import simpler crypto/md5 module from gnulib, plus stdint module.
* aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
* src/config.in: Regenerate.
* lib/md5.c, lib/md5.h: Regenerate with simpler version, which
assumes C99-style <stdint.h>, supplied by the stdint module.
* lib/stdint.in.h, m4/longlong.m4, m4/stdint.m4: New files,
generated from gnulib.
* src/deps.mk (fns.o): Do not depend on md5.h, fixing a typo in
the earlier patch.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Makefile.in | 77 | ||||
| -rw-r--r-- | lib/gnulib.mk | 44 | ||||
| -rw-r--r-- | lib/md5.c | 34 | ||||
| -rw-r--r-- | lib/md5.h | 53 | ||||
| -rw-r--r-- | lib/stdint.in.h | 592 |
5 files changed, 731 insertions, 69 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index b0fd92237cd..0029719373a 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in | |||
| @@ -53,9 +53,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/00gnulib.m4 \ | |||
| 53 | $(top_srcdir)/m4/c-strtod.m4 $(top_srcdir)/m4/extensions.m4 \ | 53 | $(top_srcdir)/m4/c-strtod.m4 $(top_srcdir)/m4/extensions.m4 \ |
| 54 | $(top_srcdir)/m4/getloadavg.m4 $(top_srcdir)/m4/getopt.m4 \ | 54 | $(top_srcdir)/m4/getloadavg.m4 $(top_srcdir)/m4/getopt.m4 \ |
| 55 | $(top_srcdir)/m4/gl-comp.m4 $(top_srcdir)/m4/gnulib-common.m4 \ | 55 | $(top_srcdir)/m4/gl-comp.m4 $(top_srcdir)/m4/gnulib-common.m4 \ |
| 56 | $(top_srcdir)/m4/include_next.m4 $(top_srcdir)/m4/md5.m4 \ | 56 | $(top_srcdir)/m4/include_next.m4 $(top_srcdir)/m4/longlong.m4 \ |
| 57 | $(top_srcdir)/m4/mktime.m4 $(top_srcdir)/m4/multiarch.m4 \ | 57 | $(top_srcdir)/m4/md5.m4 $(top_srcdir)/m4/mktime.m4 \ |
| 58 | $(top_srcdir)/m4/stdbool.m4 $(top_srcdir)/m4/stddef_h.m4 \ | 58 | $(top_srcdir)/m4/multiarch.m4 $(top_srcdir)/m4/stdbool.m4 \ |
| 59 | $(top_srcdir)/m4/stddef_h.m4 $(top_srcdir)/m4/stdint.m4 \ | ||
| 59 | $(top_srcdir)/m4/stdlib_h.m4 $(top_srcdir)/m4/strftime.m4 \ | 60 | $(top_srcdir)/m4/stdlib_h.m4 $(top_srcdir)/m4/strftime.m4 \ |
| 60 | $(top_srcdir)/m4/time_h.m4 $(top_srcdir)/m4/time_r.m4 \ | 61 | $(top_srcdir)/m4/time_h.m4 $(top_srcdir)/m4/time_r.m4 \ |
| 61 | $(top_srcdir)/m4/tm_gmtoff.m4 $(top_srcdir)/m4/unistd_h.m4 \ | 62 | $(top_srcdir)/m4/tm_gmtoff.m4 $(top_srcdir)/m4/unistd_h.m4 \ |
| @@ -95,6 +96,11 @@ AUTOCONF = @AUTOCONF@ | |||
| 95 | AUTOHEADER = @AUTOHEADER@ | 96 | AUTOHEADER = @AUTOHEADER@ |
| 96 | AUTOMAKE = @AUTOMAKE@ | 97 | AUTOMAKE = @AUTOMAKE@ |
| 97 | AWK = @AWK@ | 98 | AWK = @AWK@ |
| 99 | BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@ | ||
| 100 | BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@ | ||
| 101 | BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@ | ||
| 102 | BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@ | ||
| 103 | BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@ | ||
| 98 | BLESSMAIL_TARGET = @BLESSMAIL_TARGET@ | 104 | BLESSMAIL_TARGET = @BLESSMAIL_TARGET@ |
| 99 | CANNOT_DUMP = @CANNOT_DUMP@ | 105 | CANNOT_DUMP = @CANNOT_DUMP@ |
| 100 | CC = @CC@ | 106 | CC = @CC@ |
| @@ -244,9 +250,11 @@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ | |||
| 244 | HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ | 250 | HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ |
| 245 | HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ | 251 | HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ |
| 246 | HAVE_GRANTPT = @HAVE_GRANTPT@ | 252 | HAVE_GRANTPT = @HAVE_GRANTPT@ |
| 253 | HAVE_INTTYPES_H = @HAVE_INTTYPES_H@ | ||
| 247 | HAVE_LCHOWN = @HAVE_LCHOWN@ | 254 | HAVE_LCHOWN = @HAVE_LCHOWN@ |
| 248 | HAVE_LINK = @HAVE_LINK@ | 255 | HAVE_LINK = @HAVE_LINK@ |
| 249 | HAVE_LINKAT = @HAVE_LINKAT@ | 256 | HAVE_LINKAT = @HAVE_LINKAT@ |
| 257 | HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@ | ||
| 250 | HAVE_MAKEINFO = @HAVE_MAKEINFO@ | 258 | HAVE_MAKEINFO = @HAVE_MAKEINFO@ |
| 251 | HAVE_MKDTEMP = @HAVE_MKDTEMP@ | 259 | HAVE_MKDTEMP = @HAVE_MKDTEMP@ |
| 252 | HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ | 260 | HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ |
| @@ -267,7 +275,11 @@ HAVE_READLINKAT = @HAVE_READLINKAT@ | |||
| 267 | HAVE_REALPATH = @HAVE_REALPATH@ | 275 | HAVE_REALPATH = @HAVE_REALPATH@ |
| 268 | HAVE_RPMATCH = @HAVE_RPMATCH@ | 276 | HAVE_RPMATCH = @HAVE_RPMATCH@ |
| 269 | HAVE_SETENV = @HAVE_SETENV@ | 277 | HAVE_SETENV = @HAVE_SETENV@ |
| 278 | HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@ | ||
| 279 | HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@ | ||
| 280 | HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@ | ||
| 270 | HAVE_SLEEP = @HAVE_SLEEP@ | 281 | HAVE_SLEEP = @HAVE_SLEEP@ |
| 282 | HAVE_STDINT_H = @HAVE_STDINT_H@ | ||
| 271 | HAVE_STRPTIME = @HAVE_STRPTIME@ | 283 | HAVE_STRPTIME = @HAVE_STRPTIME@ |
| 272 | HAVE_STRTOD = @HAVE_STRTOD@ | 284 | HAVE_STRTOD = @HAVE_STRTOD@ |
| 273 | HAVE_STRTOLL = @HAVE_STRTOLL@ | 285 | HAVE_STRTOLL = @HAVE_STRTOLL@ |
| @@ -275,13 +287,18 @@ HAVE_STRTOULL = @HAVE_STRTOULL@ | |||
| 275 | HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ | 287 | HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ |
| 276 | HAVE_SYMLINK = @HAVE_SYMLINK@ | 288 | HAVE_SYMLINK = @HAVE_SYMLINK@ |
| 277 | HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ | 289 | HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ |
| 290 | HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@ | ||
| 291 | HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@ | ||
| 278 | HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ | 292 | HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ |
| 279 | HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ | 293 | HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ |
| 294 | HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@ | ||
| 280 | HAVE_TIMEGM = @HAVE_TIMEGM@ | 295 | HAVE_TIMEGM = @HAVE_TIMEGM@ |
| 281 | HAVE_UNISTD_H = @HAVE_UNISTD_H@ | 296 | HAVE_UNISTD_H = @HAVE_UNISTD_H@ |
| 282 | HAVE_UNLINKAT = @HAVE_UNLINKAT@ | 297 | HAVE_UNLINKAT = @HAVE_UNLINKAT@ |
| 283 | HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ | 298 | HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ |
| 299 | HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@ | ||
| 284 | HAVE_USLEEP = @HAVE_USLEEP@ | 300 | HAVE_USLEEP = @HAVE_USLEEP@ |
| 301 | HAVE_WCHAR_H = @HAVE_WCHAR_H@ | ||
| 285 | HAVE_WCHAR_T = @HAVE_WCHAR_T@ | 302 | HAVE_WCHAR_T = @HAVE_WCHAR_T@ |
| 286 | HAVE_XSERVER = @HAVE_XSERVER@ | 303 | HAVE_XSERVER = @HAVE_XSERVER@ |
| 287 | HAVE__BOOL = @HAVE__BOOL@ | 304 | HAVE__BOOL = @HAVE__BOOL@ |
| @@ -350,11 +367,13 @@ MOUSE_SUPPORT = @MOUSE_SUPPORT@ | |||
| 350 | M_FILE = @M_FILE@ | 367 | M_FILE = @M_FILE@ |
| 351 | NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ | 368 | NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ |
| 352 | NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ | 369 | NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ |
| 370 | NEXT_AS_FIRST_DIRECTIVE_STDINT_H = @NEXT_AS_FIRST_DIRECTIVE_STDINT_H@ | ||
| 353 | NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ | 371 | NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ |
| 354 | NEXT_AS_FIRST_DIRECTIVE_TIME_H = @NEXT_AS_FIRST_DIRECTIVE_TIME_H@ | 372 | NEXT_AS_FIRST_DIRECTIVE_TIME_H = @NEXT_AS_FIRST_DIRECTIVE_TIME_H@ |
| 355 | NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ | 373 | NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ |
| 356 | NEXT_GETOPT_H = @NEXT_GETOPT_H@ | 374 | NEXT_GETOPT_H = @NEXT_GETOPT_H@ |
| 357 | NEXT_STDDEF_H = @NEXT_STDDEF_H@ | 375 | NEXT_STDDEF_H = @NEXT_STDDEF_H@ |
| 376 | NEXT_STDINT_H = @NEXT_STDINT_H@ | ||
| 358 | NEXT_STDLIB_H = @NEXT_STDLIB_H@ | 377 | NEXT_STDLIB_H = @NEXT_STDLIB_H@ |
| 359 | NEXT_TIME_H = @NEXT_TIME_H@ | 378 | NEXT_TIME_H = @NEXT_TIME_H@ |
| 360 | NEXT_UNISTD_H = @NEXT_UNISTD_H@ | 379 | NEXT_UNISTD_H = @NEXT_UNISTD_H@ |
| @@ -381,6 +400,7 @@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ | |||
| 381 | PRE_ALLOC_OBJ = @PRE_ALLOC_OBJ@ | 400 | PRE_ALLOC_OBJ = @PRE_ALLOC_OBJ@ |
| 382 | PROFILING_CFLAGS = @PROFILING_CFLAGS@ | 401 | PROFILING_CFLAGS = @PROFILING_CFLAGS@ |
| 383 | PTHREAD_H_DEFINES_STRUCT_TIMESPEC = @PTHREAD_H_DEFINES_STRUCT_TIMESPEC@ | 402 | PTHREAD_H_DEFINES_STRUCT_TIMESPEC = @PTHREAD_H_DEFINES_STRUCT_TIMESPEC@ |
| 403 | PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@ | ||
| 384 | RALLOC_OBJ = @RALLOC_OBJ@ | 404 | RALLOC_OBJ = @RALLOC_OBJ@ |
| 385 | RANLIB = @RANLIB@ | 405 | RANLIB = @RANLIB@ |
| 386 | REPLACE_CALLOC = @REPLACE_CALLOC@ | 406 | REPLACE_CALLOC = @REPLACE_CALLOC@ |
| @@ -427,9 +447,12 @@ RSVG_CFLAGS = @RSVG_CFLAGS@ | |||
| 427 | RSVG_LIBS = @RSVG_LIBS@ | 447 | RSVG_LIBS = @RSVG_LIBS@ |
| 428 | SET_MAKE = @SET_MAKE@ | 448 | SET_MAKE = @SET_MAKE@ |
| 429 | SHELL = @SHELL@ | 449 | SHELL = @SHELL@ |
| 450 | SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@ | ||
| 451 | SIZE_T_SUFFIX = @SIZE_T_SUFFIX@ | ||
| 430 | START_FILES = @START_FILES@ | 452 | START_FILES = @START_FILES@ |
| 431 | STDBOOL_H = @STDBOOL_H@ | 453 | STDBOOL_H = @STDBOOL_H@ |
| 432 | STDDEF_H = @STDDEF_H@ | 454 | STDDEF_H = @STDDEF_H@ |
| 455 | STDINT_H = @STDINT_H@ | ||
| 433 | STRIP = @STRIP@ | 456 | STRIP = @STRIP@ |
| 434 | SYS_TIME_H_DEFINES_STRUCT_TIMESPEC = @SYS_TIME_H_DEFINES_STRUCT_TIMESPEC@ | 457 | SYS_TIME_H_DEFINES_STRUCT_TIMESPEC = @SYS_TIME_H_DEFINES_STRUCT_TIMESPEC@ |
| 435 | S_FILE = @S_FILE@ | 458 | S_FILE = @S_FILE@ |
| @@ -443,8 +466,10 @@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ | |||
| 443 | UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ | 466 | UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ |
| 444 | VERSION = @VERSION@ | 467 | VERSION = @VERSION@ |
| 445 | VMLIMIT_OBJ = @VMLIMIT_OBJ@ | 468 | VMLIMIT_OBJ = @VMLIMIT_OBJ@ |
| 469 | WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ | ||
| 446 | WIDGET_OBJ = @WIDGET_OBJ@ | 470 | WIDGET_OBJ = @WIDGET_OBJ@ |
| 447 | WINDOW_SUPPORT = @WINDOW_SUPPORT@ | 471 | WINDOW_SUPPORT = @WINDOW_SUPPORT@ |
| 472 | WINT_T_SUFFIX = @WINT_T_SUFFIX@ | ||
| 448 | XFT_CFLAGS = @XFT_CFLAGS@ | 473 | XFT_CFLAGS = @XFT_CFLAGS@ |
| 449 | XFT_LIBS = @XFT_LIBS@ | 474 | XFT_LIBS = @XFT_LIBS@ |
| 450 | XMENU_OBJ = @XMENU_OBJ@ | 475 | XMENU_OBJ = @XMENU_OBJ@ |
| @@ -534,17 +559,18 @@ x_default_search_path = @x_default_search_path@ | |||
| 534 | # present in all Makefile.am that need it. This is ensured by the applicability | 559 | # present in all Makefile.am that need it. This is ensured by the applicability |
| 535 | # 'all' defined above. | 560 | # 'all' defined above. |
| 536 | BUILT_SOURCES = arg-nonnull.h c++defs.h $(GETOPT_H) $(STDBOOL_H) \ | 561 | BUILT_SOURCES = arg-nonnull.h c++defs.h $(GETOPT_H) $(STDBOOL_H) \ |
| 537 | $(STDDEF_H) stdlib.h time.h unistd.h warn-on-use.h | 562 | $(STDDEF_H) $(STDINT_H) stdlib.h time.h unistd.h warn-on-use.h |
| 538 | EXTRA_DIST = $(top_srcdir)/./arg-nonnull.h $(top_srcdir)/./c++defs.h \ | 563 | EXTRA_DIST = $(top_srcdir)/./arg-nonnull.h $(top_srcdir)/./c++defs.h \ |
| 539 | md5.c md5.h ftoastr.c ftoastr.h getloadavg.c getopt.c \ | 564 | md5.c md5.h ftoastr.c ftoastr.h getloadavg.c getopt.c \ |
| 540 | getopt.in.h getopt1.c getopt_int.h intprops.h \ | 565 | getopt.in.h getopt1.c getopt_int.h intprops.h \ |
| 541 | mktime-internal.h mktime.c stdbool.in.h stddef.in.h \ | 566 | mktime-internal.h mktime.c stdbool.in.h stddef.in.h \ |
| 542 | stdlib.in.h strftime.c strftime.h time.in.h time_r.c \ | 567 | stdint.in.h stdlib.in.h strftime.c strftime.h time.in.h \ |
| 543 | unistd.in.h $(top_srcdir)/./warn-on-use.h | 568 | time_r.c unistd.in.h $(top_srcdir)/./warn-on-use.h |
| 544 | MOSTLYCLEANFILES = core *.stackdump arg-nonnull.h arg-nonnull.h-t \ | 569 | MOSTLYCLEANFILES = core *.stackdump arg-nonnull.h arg-nonnull.h-t \ |
| 545 | c++defs.h c++defs.h-t getopt.h getopt.h-t stdbool.h \ | 570 | c++defs.h c++defs.h-t getopt.h getopt.h-t stdbool.h \ |
| 546 | stdbool.h-t stddef.h stddef.h-t stdlib.h stdlib.h-t time.h \ | 571 | stdbool.h-t stddef.h stddef.h-t stdint.h stdint.h-t stdlib.h \ |
| 547 | time.h-t unistd.h unistd.h-t warn-on-use.h warn-on-use.h-t | 572 | stdlib.h-t time.h time.h-t unistd.h unistd.h-t warn-on-use.h \ |
| 573 | warn-on-use.h-t | ||
| 548 | noinst_LIBRARIES = libgnu.a | 574 | noinst_LIBRARIES = libgnu.a |
| 549 | DEFAULT_INCLUDES = -I. -I../src -I$(top_srcdir)/src | 575 | DEFAULT_INCLUDES = -I. -I../src -I$(top_srcdir)/src |
| 550 | libgnu_a_SOURCES = dtoastr.c gettext.h ignore-value.h | 576 | libgnu_a_SOURCES = dtoastr.c gettext.h ignore-value.h |
| @@ -884,6 +910,41 @@ stddef.h: stddef.in.h | |||
| 884 | } > $@-t && \ | 910 | } > $@-t && \ |
| 885 | mv $@-t $@ | 911 | mv $@-t $@ |
| 886 | 912 | ||
| 913 | # We need the following in order to create <stdint.h> when the system | ||
| 914 | # doesn't have one that works with the given compiler. | ||
| 915 | stdint.h: stdint.in.h | ||
| 916 | $(AM_V_GEN)rm -f $@-t $@ && \ | ||
| 917 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ | ||
| 918 | sed -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \ | ||
| 919 | -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ | ||
| 920 | -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ | ||
| 921 | -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ | ||
| 922 | -e 's|@''NEXT_STDINT_H''@|$(NEXT_STDINT_H)|g' \ | ||
| 923 | -e 's/@''HAVE_SYS_TYPES_H''@/$(HAVE_SYS_TYPES_H)/g' \ | ||
| 924 | -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \ | ||
| 925 | -e 's/@''HAVE_SYS_INTTYPES_H''@/$(HAVE_SYS_INTTYPES_H)/g' \ | ||
| 926 | -e 's/@''HAVE_SYS_BITYPES_H''@/$(HAVE_SYS_BITYPES_H)/g' \ | ||
| 927 | -e 's/@''HAVE_WCHAR_H''@/$(HAVE_WCHAR_H)/g' \ | ||
| 928 | -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \ | ||
| 929 | -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/$(HAVE_UNSIGNED_LONG_LONG_INT)/g' \ | ||
| 930 | -e 's/@''APPLE_UNIVERSAL_BUILD''@/$(APPLE_UNIVERSAL_BUILD)/g' \ | ||
| 931 | -e 's/@''BITSIZEOF_PTRDIFF_T''@/$(BITSIZEOF_PTRDIFF_T)/g' \ | ||
| 932 | -e 's/@''PTRDIFF_T_SUFFIX''@/$(PTRDIFF_T_SUFFIX)/g' \ | ||
| 933 | -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/$(BITSIZEOF_SIG_ATOMIC_T)/g' \ | ||
| 934 | -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/$(HAVE_SIGNED_SIG_ATOMIC_T)/g' \ | ||
| 935 | -e 's/@''SIG_ATOMIC_T_SUFFIX''@/$(SIG_ATOMIC_T_SUFFIX)/g' \ | ||
| 936 | -e 's/@''BITSIZEOF_SIZE_T''@/$(BITSIZEOF_SIZE_T)/g' \ | ||
| 937 | -e 's/@''SIZE_T_SUFFIX''@/$(SIZE_T_SUFFIX)/g' \ | ||
| 938 | -e 's/@''BITSIZEOF_WCHAR_T''@/$(BITSIZEOF_WCHAR_T)/g' \ | ||
| 939 | -e 's/@''HAVE_SIGNED_WCHAR_T''@/$(HAVE_SIGNED_WCHAR_T)/g' \ | ||
| 940 | -e 's/@''WCHAR_T_SUFFIX''@/$(WCHAR_T_SUFFIX)/g' \ | ||
| 941 | -e 's/@''BITSIZEOF_WINT_T''@/$(BITSIZEOF_WINT_T)/g' \ | ||
| 942 | -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \ | ||
| 943 | -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \ | ||
| 944 | < $(srcdir)/stdint.in.h; \ | ||
| 945 | } > $@-t && \ | ||
| 946 | mv $@-t $@ | ||
| 947 | |||
| 887 | # We need the following in order to create <stdlib.h> when the system | 948 | # We need the following in order to create <stdlib.h> when the system |
| 888 | # doesn't have one that works with the given compiler. | 949 | # doesn't have one that works with the given compiler. |
| 889 | stdlib.h: stdlib.in.h $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) | 950 | stdlib.h: stdlib.in.h $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) |
diff --git a/lib/gnulib.mk b/lib/gnulib.mk index 31f0fd0328e..3e93e12d9bf 100644 --- a/lib/gnulib.mk +++ b/lib/gnulib.mk | |||
| @@ -193,6 +193,50 @@ EXTRA_DIST += stddef.in.h | |||
| 193 | 193 | ||
| 194 | ## end gnulib module stddef | 194 | ## end gnulib module stddef |
| 195 | 195 | ||
| 196 | ## begin gnulib module stdint | ||
| 197 | |||
| 198 | BUILT_SOURCES += $(STDINT_H) | ||
| 199 | |||
| 200 | # We need the following in order to create <stdint.h> when the system | ||
| 201 | # doesn't have one that works with the given compiler. | ||
| 202 | stdint.h: stdint.in.h | ||
| 203 | $(AM_V_GEN)rm -f $@-t $@ && \ | ||
| 204 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ | ||
| 205 | sed -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \ | ||
| 206 | -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ | ||
| 207 | -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ | ||
| 208 | -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ | ||
| 209 | -e 's|@''NEXT_STDINT_H''@|$(NEXT_STDINT_H)|g' \ | ||
| 210 | -e 's/@''HAVE_SYS_TYPES_H''@/$(HAVE_SYS_TYPES_H)/g' \ | ||
| 211 | -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \ | ||
| 212 | -e 's/@''HAVE_SYS_INTTYPES_H''@/$(HAVE_SYS_INTTYPES_H)/g' \ | ||
| 213 | -e 's/@''HAVE_SYS_BITYPES_H''@/$(HAVE_SYS_BITYPES_H)/g' \ | ||
| 214 | -e 's/@''HAVE_WCHAR_H''@/$(HAVE_WCHAR_H)/g' \ | ||
| 215 | -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \ | ||
| 216 | -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/$(HAVE_UNSIGNED_LONG_LONG_INT)/g' \ | ||
| 217 | -e 's/@''APPLE_UNIVERSAL_BUILD''@/$(APPLE_UNIVERSAL_BUILD)/g' \ | ||
| 218 | -e 's/@''BITSIZEOF_PTRDIFF_T''@/$(BITSIZEOF_PTRDIFF_T)/g' \ | ||
| 219 | -e 's/@''PTRDIFF_T_SUFFIX''@/$(PTRDIFF_T_SUFFIX)/g' \ | ||
| 220 | -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/$(BITSIZEOF_SIG_ATOMIC_T)/g' \ | ||
| 221 | -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/$(HAVE_SIGNED_SIG_ATOMIC_T)/g' \ | ||
| 222 | -e 's/@''SIG_ATOMIC_T_SUFFIX''@/$(SIG_ATOMIC_T_SUFFIX)/g' \ | ||
| 223 | -e 's/@''BITSIZEOF_SIZE_T''@/$(BITSIZEOF_SIZE_T)/g' \ | ||
| 224 | -e 's/@''SIZE_T_SUFFIX''@/$(SIZE_T_SUFFIX)/g' \ | ||
| 225 | -e 's/@''BITSIZEOF_WCHAR_T''@/$(BITSIZEOF_WCHAR_T)/g' \ | ||
| 226 | -e 's/@''HAVE_SIGNED_WCHAR_T''@/$(HAVE_SIGNED_WCHAR_T)/g' \ | ||
| 227 | -e 's/@''WCHAR_T_SUFFIX''@/$(WCHAR_T_SUFFIX)/g' \ | ||
| 228 | -e 's/@''BITSIZEOF_WINT_T''@/$(BITSIZEOF_WINT_T)/g' \ | ||
| 229 | -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \ | ||
| 230 | -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \ | ||
| 231 | < $(srcdir)/stdint.in.h; \ | ||
| 232 | } > $@-t && \ | ||
| 233 | mv $@-t $@ | ||
| 234 | MOSTLYCLEANFILES += stdint.h stdint.h-t | ||
| 235 | |||
| 236 | EXTRA_DIST += stdint.in.h | ||
| 237 | |||
| 238 | ## end gnulib module stdint | ||
| 239 | |||
| 196 | ## begin gnulib module stdlib | 240 | ## begin gnulib module stdlib |
| 197 | 241 | ||
| 198 | BUILT_SOURCES += stdlib.h | 242 | BUILT_SOURCES += stdlib.h |
| @@ -82,9 +82,9 @@ md5_init_ctx (struct md5_ctx *ctx) | |||
| 82 | 82 | ||
| 83 | /* Copy the 4 byte value from v into the memory location pointed to by *cp, | 83 | /* Copy the 4 byte value from v into the memory location pointed to by *cp, |
| 84 | If your architecture allows unaligned access this is equivalent to | 84 | If your architecture allows unaligned access this is equivalent to |
| 85 | * (md5_uint32 *) cp = v */ | 85 | * (uint32_t *) cp = v */ |
| 86 | static inline void | 86 | static inline void |
| 87 | set_uint32 (char *cp, md5_uint32 v) | 87 | set_uint32 (char *cp, uint32_t v) |
| 88 | { | 88 | { |
| 89 | memcpy (cp, &v, sizeof v); | 89 | memcpy (cp, &v, sizeof v); |
| 90 | } | 90 | } |
| @@ -109,7 +109,7 @@ void * | |||
| 109 | md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) | 109 | md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) |
| 110 | { | 110 | { |
| 111 | /* Take yet unprocessed bytes into account. */ | 111 | /* Take yet unprocessed bytes into account. */ |
| 112 | md5_uint32 bytes = ctx->buflen; | 112 | uint32_t bytes = ctx->buflen; |
| 113 | size_t size = (bytes < 56) ? 64 / 4 : 64 * 2 / 4; | 113 | size_t size = (bytes < 56) ? 64 / 4 : 64 * 2 / 4; |
| 114 | 114 | ||
| 115 | /* Now count remaining bytes. */ | 115 | /* Now count remaining bytes. */ |
| @@ -255,7 +255,7 @@ md5_process_bytes (const void *buffer, size_t len, struct md5_ctx *ctx) | |||
| 255 | { | 255 | { |
| 256 | #if !_STRING_ARCH_unaligned | 256 | #if !_STRING_ARCH_unaligned |
| 257 | # define alignof(type) offsetof (struct { char c; type x; }, x) | 257 | # define alignof(type) offsetof (struct { char c; type x; }, x) |
| 258 | # define UNALIGNED_P(p) (((size_t) p) % alignof (md5_uint32) != 0) | 258 | # define UNALIGNED_P(p) (((size_t) p) % alignof (uint32_t) != 0) |
| 259 | if (UNALIGNED_P (buffer)) | 259 | if (UNALIGNED_P (buffer)) |
| 260 | while (len > 64) | 260 | while (len > 64) |
| 261 | { | 261 | { |
| @@ -305,14 +305,14 @@ md5_process_bytes (const void *buffer, size_t len, struct md5_ctx *ctx) | |||
| 305 | void | 305 | void |
| 306 | md5_process_block (const void *buffer, size_t len, struct md5_ctx *ctx) | 306 | md5_process_block (const void *buffer, size_t len, struct md5_ctx *ctx) |
| 307 | { | 307 | { |
| 308 | md5_uint32 correct_words[16]; | 308 | uint32_t correct_words[16]; |
| 309 | const md5_uint32 *words = buffer; | 309 | const uint32_t *words = buffer; |
| 310 | size_t nwords = len / sizeof (md5_uint32); | 310 | size_t nwords = len / sizeof (uint32_t); |
| 311 | const md5_uint32 *endp = words + nwords; | 311 | const uint32_t *endp = words + nwords; |
| 312 | md5_uint32 A = ctx->A; | 312 | uint32_t A = ctx->A; |
| 313 | md5_uint32 B = ctx->B; | 313 | uint32_t B = ctx->B; |
| 314 | md5_uint32 C = ctx->C; | 314 | uint32_t C = ctx->C; |
| 315 | md5_uint32 D = ctx->D; | 315 | uint32_t D = ctx->D; |
| 316 | 316 | ||
| 317 | /* First increment the byte count. RFC 1321 specifies the possible | 317 | /* First increment the byte count. RFC 1321 specifies the possible |
| 318 | length of the file up to 2^64 bits. Here we only compute the | 318 | length of the file up to 2^64 bits. Here we only compute the |
| @@ -325,11 +325,11 @@ md5_process_block (const void *buffer, size_t len, struct md5_ctx *ctx) | |||
| 325 | the loop. */ | 325 | the loop. */ |
| 326 | while (words < endp) | 326 | while (words < endp) |
| 327 | { | 327 | { |
| 328 | md5_uint32 *cwp = correct_words; | 328 | uint32_t *cwp = correct_words; |
| 329 | md5_uint32 A_save = A; | 329 | uint32_t A_save = A; |
| 330 | md5_uint32 B_save = B; | 330 | uint32_t B_save = B; |
| 331 | md5_uint32 C_save = C; | 331 | uint32_t C_save = C; |
| 332 | md5_uint32 D_save = D; | 332 | uint32_t D_save = D; |
| 333 | 333 | ||
| 334 | /* First round: using the given function, the context and a constant | 334 | /* First round: using the given function, the context and a constant |
| 335 | the next context is computed. Because the algorithms processing | 335 | the next context is computed. Because the algorithms processing |
| @@ -22,6 +22,7 @@ | |||
| 22 | #define _MD5_H 1 | 22 | #define _MD5_H 1 |
| 23 | 23 | ||
| 24 | #include <stdio.h> | 24 | #include <stdio.h> |
| 25 | #include <stdint.h> | ||
| 25 | 26 | ||
| 26 | #define MD5_DIGEST_SIZE 16 | 27 | #define MD5_DIGEST_SIZE 16 |
| 27 | #define MD5_BLOCK_SIZE 64 | 28 | #define MD5_BLOCK_SIZE 64 |
| @@ -57,53 +58,17 @@ | |||
| 57 | extern "C" { | 58 | extern "C" { |
| 58 | # endif | 59 | # endif |
| 59 | 60 | ||
| 60 | /* The following contortions are an attempt to use the C preprocessor | ||
| 61 | to determine an unsigned integral type that is 32 bits wide. An | ||
| 62 | alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but | ||
| 63 | doing that would require that the configure script compile and *run* | ||
| 64 | the resulting executable. Locally running cross-compiled executables | ||
| 65 | is usually not possible. */ | ||
| 66 | |||
| 67 | #if defined _LIBC | ||
| 68 | # include <stdint.h> | ||
| 69 | typedef uint32_t md5_uint32; | ||
| 70 | #else | ||
| 71 | # if defined __STDC__ && __STDC__ | ||
| 72 | # define UINT_MAX_32_BITS 4294967295U | ||
| 73 | # else | ||
| 74 | # define UINT_MAX_32_BITS 0xFFFFFFFF | ||
| 75 | # endif | ||
| 76 | |||
| 77 | # include <limits.h> | ||
| 78 | |||
| 79 | # if UINT_MAX == UINT_MAX_32_BITS | ||
| 80 | typedef unsigned int md5_uint32; | ||
| 81 | # else | ||
| 82 | # if USHRT_MAX == UINT_MAX_32_BITS | ||
| 83 | typedef unsigned short md5_uint32; | ||
| 84 | # else | ||
| 85 | # if ULONG_MAX == UINT_MAX_32_BITS | ||
| 86 | typedef unsigned long md5_uint32; | ||
| 87 | # else | ||
| 88 | /* A machine this weird should have <stdint.h>. */ | ||
| 89 | # include <stdint.h> | ||
| 90 | typedef uint32_t md5_uint32; | ||
| 91 | # endif | ||
| 92 | # endif | ||
| 93 | # endif | ||
| 94 | #endif | ||
| 95 | |||
| 96 | /* Structure to save state of computation between the single steps. */ | 61 | /* Structure to save state of computation between the single steps. */ |
| 97 | struct md5_ctx | 62 | struct md5_ctx |
| 98 | { | 63 | { |
| 99 | md5_uint32 A; | 64 | uint32_t A; |
| 100 | md5_uint32 B; | 65 | uint32_t B; |
| 101 | md5_uint32 C; | 66 | uint32_t C; |
| 102 | md5_uint32 D; | 67 | uint32_t D; |
| 103 | 68 | ||
| 104 | md5_uint32 total[2]; | 69 | uint32_t total[2]; |
| 105 | md5_uint32 buflen; | 70 | uint32_t buflen; |
| 106 | md5_uint32 buffer[32]; | 71 | uint32_t buffer[32]; |
| 107 | }; | 72 | }; |
| 108 | 73 | ||
| 109 | /* | 74 | /* |
diff --git a/lib/stdint.in.h b/lib/stdint.in.h new file mode 100644 index 00000000000..b32227bb04c --- /dev/null +++ b/lib/stdint.in.h | |||
| @@ -0,0 +1,592 @@ | |||
| 1 | /* Copyright (C) 2001-2002, 2004-2011 Free Software Foundation, Inc. | ||
| 2 | Written by Paul Eggert, Bruno Haible, Sam Steingold, Peter Burwood. | ||
| 3 | This file is part of gnulib. | ||
| 4 | |||
| 5 | This program is free software; you can redistribute it and/or modify | ||
| 6 | it under the terms of the GNU General Public License as published by | ||
| 7 | the Free Software Foundation; either version 3, or (at your option) | ||
| 8 | any later version. | ||
| 9 | |||
| 10 | This program is distributed in the hope that it will be useful, | ||
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | GNU General Public License for more details. | ||
| 14 | |||
| 15 | You should have received a copy of the GNU General Public License | ||
| 16 | along with this program; if not, write to the Free Software Foundation, | ||
| 17 | Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ | ||
| 18 | |||
| 19 | /* | ||
| 20 | * ISO C 99 <stdint.h> for platforms that lack it. | ||
| 21 | * <http://www.opengroup.org/susv3xbd/stdint.h.html> | ||
| 22 | */ | ||
| 23 | |||
| 24 | #ifndef _GL_STDINT_H | ||
| 25 | |||
| 26 | #if __GNUC__ >= 3 | ||
| 27 | @PRAGMA_SYSTEM_HEADER@ | ||
| 28 | #endif | ||
| 29 | @PRAGMA_COLUMNS@ | ||
| 30 | |||
| 31 | /* When including a system file that in turn includes <inttypes.h>, | ||
| 32 | use the system <inttypes.h>, not our substitute. This avoids | ||
| 33 | problems with (for example) VMS, whose <sys/bitypes.h> includes | ||
| 34 | <inttypes.h>. */ | ||
| 35 | #define _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H | ||
| 36 | |||
| 37 | /* Get those types that are already defined in other system include | ||
| 38 | files, so that we can "#define int8_t signed char" below without | ||
| 39 | worrying about a later system include file containing a "typedef | ||
| 40 | signed char int8_t;" that will get messed up by our macro. Our | ||
| 41 | macros should all be consistent with the system versions, except | ||
| 42 | for the "fast" types and macros, which we recommend against using | ||
| 43 | in public interfaces due to compiler differences. */ | ||
| 44 | |||
| 45 | #if @HAVE_STDINT_H@ | ||
| 46 | # if defined __sgi && ! defined __c99 | ||
| 47 | /* Bypass IRIX's <stdint.h> if in C89 mode, since it merely annoys users | ||
| 48 | with "This header file is to be used only for c99 mode compilations" | ||
| 49 | diagnostics. */ | ||
| 50 | # define __STDINT_H__ | ||
| 51 | # endif | ||
| 52 | /* Other systems may have an incomplete or buggy <stdint.h>. | ||
| 53 | Include it before <inttypes.h>, since any "#include <stdint.h>" | ||
| 54 | in <inttypes.h> would reinclude us, skipping our contents because | ||
| 55 | _GL_STDINT_H is defined. | ||
| 56 | The include_next requires a split double-inclusion guard. */ | ||
| 57 | # @INCLUDE_NEXT@ @NEXT_STDINT_H@ | ||
| 58 | #endif | ||
| 59 | |||
| 60 | #if ! defined _GL_STDINT_H && ! defined _GL_JUST_INCLUDE_SYSTEM_STDINT_H | ||
| 61 | #define _GL_STDINT_H | ||
| 62 | |||
| 63 | /* <sys/types.h> defines some of the stdint.h types as well, on glibc, | ||
| 64 | IRIX 6.5, and OpenBSD 3.8 (via <machine/types.h>). | ||
| 65 | AIX 5.2 <sys/types.h> isn't needed and causes troubles. | ||
| 66 | MacOS X 10.4.6 <sys/types.h> includes <stdint.h> (which is us), but | ||
| 67 | relies on the system <stdint.h> definitions, so include | ||
| 68 | <sys/types.h> after @NEXT_STDINT_H@. */ | ||
| 69 | #if @HAVE_SYS_TYPES_H@ && ! defined _AIX | ||
| 70 | # include <sys/types.h> | ||
| 71 | #endif | ||
| 72 | |||
| 73 | /* Get LONG_MIN, LONG_MAX, ULONG_MAX. */ | ||
| 74 | #include <limits.h> | ||
| 75 | |||
| 76 | #if @HAVE_INTTYPES_H@ | ||
| 77 | /* In OpenBSD 3.8, <inttypes.h> includes <machine/types.h>, which defines | ||
| 78 | int{8,16,32,64}_t, uint{8,16,32,64}_t and __BIT_TYPES_DEFINED__. | ||
| 79 | <inttypes.h> also defines intptr_t and uintptr_t. */ | ||
| 80 | # include <inttypes.h> | ||
| 81 | #elif @HAVE_SYS_INTTYPES_H@ | ||
| 82 | /* Solaris 7 <sys/inttypes.h> has the types except the *_fast*_t types, and | ||
| 83 | the macros except for *_FAST*_*, INTPTR_MIN, PTRDIFF_MIN, PTRDIFF_MAX. */ | ||
| 84 | # include <sys/inttypes.h> | ||
| 85 | #endif | ||
| 86 | |||
| 87 | #if @HAVE_SYS_BITYPES_H@ && ! defined __BIT_TYPES_DEFINED__ | ||
| 88 | /* Linux libc4 >= 4.6.7 and libc5 have a <sys/bitypes.h> that defines | ||
| 89 | int{8,16,32,64}_t and __BIT_TYPES_DEFINED__. In libc5 >= 5.2.2 it is | ||
| 90 | included by <sys/types.h>. */ | ||
| 91 | # include <sys/bitypes.h> | ||
| 92 | #endif | ||
| 93 | |||
| 94 | #undef _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H | ||
| 95 | |||
| 96 | /* Minimum and maximum values for a integer type under the usual assumption. | ||
| 97 | Return an unspecified value if BITS == 0, adding a check to pacify | ||
| 98 | picky compilers. */ | ||
| 99 | |||
| 100 | #define _STDINT_MIN(signed, bits, zero) \ | ||
| 101 | ((signed) ? (- ((zero) + 1) << ((bits) ? (bits) - 1 : 0)) : (zero)) | ||
| 102 | |||
| 103 | #define _STDINT_MAX(signed, bits, zero) \ | ||
| 104 | ((signed) \ | ||
| 105 | ? ~ _STDINT_MIN (signed, bits, zero) \ | ||
| 106 | : /* The expression for the unsigned case. The subtraction of (signed) \ | ||
| 107 | is a nop in the unsigned case and avoids "signed integer overflow" \ | ||
| 108 | warnings in the signed case. */ \ | ||
| 109 | ((((zero) + 1) << ((bits) ? (bits) - 1 - (signed) : 0)) - 1) * 2 + 1) | ||
| 110 | |||
| 111 | #if !GNULIB_defined_stdint_types | ||
| 112 | |||
| 113 | /* 7.18.1.1. Exact-width integer types */ | ||
| 114 | |||
| 115 | /* Here we assume a standard architecture where the hardware integer | ||
| 116 | types have 8, 16, 32, optionally 64 bits. */ | ||
| 117 | |||
| 118 | #undef int8_t | ||
| 119 | #undef uint8_t | ||
| 120 | typedef signed char gl_int8_t; | ||
| 121 | typedef unsigned char gl_uint8_t; | ||
| 122 | #define int8_t gl_int8_t | ||
| 123 | #define uint8_t gl_uint8_t | ||
| 124 | |||
| 125 | #undef int16_t | ||
| 126 | #undef uint16_t | ||
| 127 | typedef short int gl_int16_t; | ||
| 128 | typedef unsigned short int gl_uint16_t; | ||
| 129 | #define int16_t gl_int16_t | ||
| 130 | #define uint16_t gl_uint16_t | ||
| 131 | |||
| 132 | #undef int32_t | ||
| 133 | #undef uint32_t | ||
| 134 | typedef int gl_int32_t; | ||
| 135 | typedef unsigned int gl_uint32_t; | ||
| 136 | #define int32_t gl_int32_t | ||
| 137 | #define uint32_t gl_uint32_t | ||
| 138 | |||
| 139 | /* If the system defines INT64_MAX, assume int64_t works. That way, | ||
| 140 | if the underlying platform defines int64_t to be a 64-bit long long | ||
| 141 | int, the code below won't mistakenly define it to be a 64-bit long | ||
| 142 | int, which would mess up C++ name mangling. We must use #ifdef | ||
| 143 | rather than #if, to avoid an error with HP-UX 10.20 cc. */ | ||
| 144 | |||
| 145 | #ifdef INT64_MAX | ||
| 146 | # define GL_INT64_T | ||
| 147 | #else | ||
| 148 | /* Do not undefine int64_t if gnulib is not being used with 64-bit | ||
| 149 | types, since otherwise it breaks platforms like Tandem/NSK. */ | ||
| 150 | # if LONG_MAX >> 31 >> 31 == 1 | ||
| 151 | # undef int64_t | ||
| 152 | typedef long int gl_int64_t; | ||
| 153 | # define int64_t gl_int64_t | ||
| 154 | # define GL_INT64_T | ||
| 155 | # elif defined _MSC_VER | ||
| 156 | # undef int64_t | ||
| 157 | typedef __int64 gl_int64_t; | ||
| 158 | # define int64_t gl_int64_t | ||
| 159 | # define GL_INT64_T | ||
| 160 | # elif @HAVE_LONG_LONG_INT@ | ||
| 161 | # undef int64_t | ||
| 162 | typedef long long int gl_int64_t; | ||
| 163 | # define int64_t gl_int64_t | ||
| 164 | # define GL_INT64_T | ||
| 165 | # endif | ||
| 166 | #endif | ||
| 167 | |||
| 168 | #ifdef UINT64_MAX | ||
| 169 | # define GL_UINT64_T | ||
| 170 | #else | ||
| 171 | # if ULONG_MAX >> 31 >> 31 >> 1 == 1 | ||
| 172 | # undef uint64_t | ||
| 173 | typedef unsigned long int gl_uint64_t; | ||
| 174 | # define uint64_t gl_uint64_t | ||
| 175 | # define GL_UINT64_T | ||
| 176 | # elif defined _MSC_VER | ||
| 177 | # undef uint64_t | ||
| 178 | typedef unsigned __int64 gl_uint64_t; | ||
| 179 | # define uint64_t gl_uint64_t | ||
| 180 | # define GL_UINT64_T | ||
| 181 | # elif @HAVE_UNSIGNED_LONG_LONG_INT@ | ||
| 182 | # undef uint64_t | ||
| 183 | typedef unsigned long long int gl_uint64_t; | ||
| 184 | # define uint64_t gl_uint64_t | ||
| 185 | # define GL_UINT64_T | ||
| 186 | # endif | ||
| 187 | #endif | ||
| 188 | |||
| 189 | /* Avoid collision with Solaris 2.5.1 <pthread.h> etc. */ | ||
| 190 | #define _UINT8_T | ||
| 191 | #define _UINT32_T | ||
| 192 | #define _UINT64_T | ||
| 193 | |||
| 194 | |||
| 195 | /* 7.18.1.2. Minimum-width integer types */ | ||
| 196 | |||
| 197 | /* Here we assume a standard architecture where the hardware integer | ||
| 198 | types have 8, 16, 32, optionally 64 bits. Therefore the leastN_t types | ||
| 199 | are the same as the corresponding N_t types. */ | ||
| 200 | |||
| 201 | #undef int_least8_t | ||
| 202 | #undef uint_least8_t | ||
| 203 | #undef int_least16_t | ||
| 204 | #undef uint_least16_t | ||
| 205 | #undef int_least32_t | ||
| 206 | #undef uint_least32_t | ||
| 207 | #undef int_least64_t | ||
| 208 | #undef uint_least64_t | ||
| 209 | #define int_least8_t int8_t | ||
| 210 | #define uint_least8_t uint8_t | ||
| 211 | #define int_least16_t int16_t | ||
| 212 | #define uint_least16_t uint16_t | ||
| 213 | #define int_least32_t int32_t | ||
| 214 | #define uint_least32_t uint32_t | ||
| 215 | #ifdef GL_INT64_T | ||
| 216 | # define int_least64_t int64_t | ||
| 217 | #endif | ||
| 218 | #ifdef GL_UINT64_T | ||
| 219 | # define uint_least64_t uint64_t | ||
| 220 | #endif | ||
| 221 | |||
| 222 | /* 7.18.1.3. Fastest minimum-width integer types */ | ||
| 223 | |||
| 224 | /* Note: Other <stdint.h> substitutes may define these types differently. | ||
| 225 | It is not recommended to use these types in public header files. */ | ||
| 226 | |||
| 227 | /* Here we assume a standard architecture where the hardware integer | ||
| 228 | types have 8, 16, 32, optionally 64 bits. Therefore the fastN_t types | ||
| 229 | are taken from the same list of types. Assume that 'long int' | ||
| 230 | is fast enough for all narrower integers. */ | ||
| 231 | |||
| 232 | #undef int_fast8_t | ||
| 233 | #undef uint_fast8_t | ||
| 234 | #undef int_fast16_t | ||
| 235 | #undef uint_fast16_t | ||
| 236 | #undef int_fast32_t | ||
| 237 | #undef uint_fast32_t | ||
| 238 | #undef int_fast64_t | ||
| 239 | #undef uint_fast64_t | ||
| 240 | typedef long int gl_int_fast8_t; | ||
| 241 | typedef unsigned long int gl_uint_fast8_t; | ||
| 242 | typedef long int gl_int_fast16_t; | ||
| 243 | typedef unsigned long int gl_uint_fast16_t; | ||
| 244 | typedef long int gl_int_fast32_t; | ||
| 245 | typedef unsigned long int gl_uint_fast32_t; | ||
| 246 | #define int_fast8_t gl_int_fast8_t | ||
| 247 | #define uint_fast8_t gl_uint_fast8_t | ||
| 248 | #define int_fast16_t gl_int_fast16_t | ||
| 249 | #define uint_fast16_t gl_uint_fast16_t | ||
| 250 | #define int_fast32_t gl_int_fast32_t | ||
| 251 | #define uint_fast32_t gl_uint_fast32_t | ||
| 252 | #ifdef GL_INT64_T | ||
| 253 | # define int_fast64_t int64_t | ||
| 254 | #endif | ||
| 255 | #ifdef GL_UINT64_T | ||
| 256 | # define uint_fast64_t uint64_t | ||
| 257 | #endif | ||
| 258 | |||
| 259 | /* 7.18.1.4. Integer types capable of holding object pointers */ | ||
| 260 | |||
| 261 | #undef intptr_t | ||
| 262 | #undef uintptr_t | ||
| 263 | typedef long int gl_intptr_t; | ||
| 264 | typedef unsigned long int gl_uintptr_t; | ||
| 265 | #define intptr_t gl_intptr_t | ||
| 266 | #define uintptr_t gl_uintptr_t | ||
| 267 | |||
| 268 | /* 7.18.1.5. Greatest-width integer types */ | ||
| 269 | |||
| 270 | /* Note: These types are compiler dependent. It may be unwise to use them in | ||
| 271 | public header files. */ | ||
| 272 | |||
| 273 | #undef intmax_t | ||
| 274 | #if @HAVE_LONG_LONG_INT@ && LONG_MAX >> 30 == 1 | ||
| 275 | typedef long long int gl_intmax_t; | ||
| 276 | # define intmax_t gl_intmax_t | ||
| 277 | #elif defined GL_INT64_T | ||
| 278 | # define intmax_t int64_t | ||
| 279 | #else | ||
| 280 | typedef long int gl_intmax_t; | ||
| 281 | # define intmax_t gl_intmax_t | ||
| 282 | #endif | ||
| 283 | |||
| 284 | #undef uintmax_t | ||
| 285 | #if @HAVE_UNSIGNED_LONG_LONG_INT@ && ULONG_MAX >> 31 == 1 | ||
| 286 | typedef unsigned long long int gl_uintmax_t; | ||
| 287 | # define uintmax_t gl_uintmax_t | ||
| 288 | #elif defined GL_UINT64_T | ||
| 289 | # define uintmax_t uint64_t | ||
| 290 | #else | ||
| 291 | typedef unsigned long int gl_uintmax_t; | ||
| 292 | # define uintmax_t gl_uintmax_t | ||
| 293 | #endif | ||
| 294 | |||
| 295 | /* Verify that intmax_t and uintmax_t have the same size. Too much code | ||
| 296 | breaks if this is not the case. If this check fails, the reason is likely | ||
| 297 | to be found in the autoconf macros. */ | ||
| 298 | typedef int _verify_intmax_size[sizeof (intmax_t) == sizeof (uintmax_t) | ||
| 299 | ? 1 : -1]; | ||
| 300 | |||
| 301 | #define GNULIB_defined_stdint_types 1 | ||
| 302 | #endif /* !GNULIB_defined_stdint_types */ | ||
| 303 | |||
| 304 | /* 7.18.2. Limits of specified-width integer types */ | ||
| 305 | |||
| 306 | #if ! defined __cplusplus || defined __STDC_LIMIT_MACROS | ||
| 307 | |||
| 308 | /* 7.18.2.1. Limits of exact-width integer types */ | ||
| 309 | |||
| 310 | /* Here we assume a standard architecture where the hardware integer | ||
| 311 | types have 8, 16, 32, optionally 64 bits. */ | ||
| 312 | |||
| 313 | #undef INT8_MIN | ||
| 314 | #undef INT8_MAX | ||
| 315 | #undef UINT8_MAX | ||
| 316 | #define INT8_MIN (~ INT8_MAX) | ||
| 317 | #define INT8_MAX 127 | ||
| 318 | #define UINT8_MAX 255 | ||
| 319 | |||
| 320 | #undef INT16_MIN | ||
| 321 | #undef INT16_MAX | ||
| 322 | #undef UINT16_MAX | ||
| 323 | #define INT16_MIN (~ INT16_MAX) | ||
| 324 | #define INT16_MAX 32767 | ||
| 325 | #define UINT16_MAX 65535 | ||
| 326 | |||
| 327 | #undef INT32_MIN | ||
| 328 | #undef INT32_MAX | ||
| 329 | #undef UINT32_MAX | ||
| 330 | #define INT32_MIN (~ INT32_MAX) | ||
| 331 | #define INT32_MAX 2147483647 | ||
| 332 | #define UINT32_MAX 4294967295U | ||
| 333 | |||
| 334 | #if defined GL_INT64_T && ! defined INT64_MAX | ||
| 335 | /* Prefer (- INTMAX_C (1) << 63) over (~ INT64_MAX) because SunPRO C 5.0 | ||
| 336 | evaluates the latter incorrectly in preprocessor expressions. */ | ||
| 337 | # define INT64_MIN (- INTMAX_C (1) << 63) | ||
| 338 | # define INT64_MAX INTMAX_C (9223372036854775807) | ||
| 339 | #endif | ||
| 340 | |||
| 341 | #if defined GL_UINT64_T && ! defined UINT64_MAX | ||
| 342 | # define UINT64_MAX UINTMAX_C (18446744073709551615) | ||
| 343 | #endif | ||
| 344 | |||
| 345 | /* 7.18.2.2. Limits of minimum-width integer types */ | ||
| 346 | |||
| 347 | /* Here we assume a standard architecture where the hardware integer | ||
| 348 | types have 8, 16, 32, optionally 64 bits. Therefore the leastN_t types | ||
| 349 | are the same as the corresponding N_t types. */ | ||
| 350 | |||
| 351 | #undef INT_LEAST8_MIN | ||
| 352 | #undef INT_LEAST8_MAX | ||
| 353 | #undef UINT_LEAST8_MAX | ||
| 354 | #define INT_LEAST8_MIN INT8_MIN | ||
| 355 | #define INT_LEAST8_MAX INT8_MAX | ||
| 356 | #define UINT_LEAST8_MAX UINT8_MAX | ||
| 357 | |||
| 358 | #undef INT_LEAST16_MIN | ||
| 359 | #undef INT_LEAST16_MAX | ||
| 360 | #undef UINT_LEAST16_MAX | ||
| 361 | #define INT_LEAST16_MIN INT16_MIN | ||
| 362 | #define INT_LEAST16_MAX INT16_MAX | ||
| 363 | #define UINT_LEAST16_MAX UINT16_MAX | ||
| 364 | |||
| 365 | #undef INT_LEAST32_MIN | ||
| 366 | #undef INT_LEAST32_MAX | ||
| 367 | #undef UINT_LEAST32_MAX | ||
| 368 | #define INT_LEAST32_MIN INT32_MIN | ||
| 369 | #define INT_LEAST32_MAX INT32_MAX | ||
| 370 | #define UINT_LEAST32_MAX UINT32_MAX | ||
| 371 | |||
| 372 | #undef INT_LEAST64_MIN | ||
| 373 | #undef INT_LEAST64_MAX | ||
| 374 | #ifdef GL_INT64_T | ||
| 375 | # define INT_LEAST64_MIN INT64_MIN | ||
| 376 | # define INT_LEAST64_MAX INT64_MAX | ||
| 377 | #endif | ||
| 378 | |||
| 379 | #undef UINT_LEAST64_MAX | ||
| 380 | #ifdef GL_UINT64_T | ||
| 381 | # define UINT_LEAST64_MAX UINT64_MAX | ||
| 382 | #endif | ||
| 383 | |||
| 384 | /* 7.18.2.3. Limits of fastest minimum-width integer types */ | ||
| 385 | |||
| 386 | /* Here we assume a standard architecture where the hardware integer | ||
| 387 | types have 8, 16, 32, optionally 64 bits. Therefore the fastN_t types | ||
| 388 | are taken from the same list of types. */ | ||
| 389 | |||
| 390 | #undef INT_FAST8_MIN | ||
| 391 | #undef INT_FAST8_MAX | ||
| 392 | #undef UINT_FAST8_MAX | ||
| 393 | #define INT_FAST8_MIN LONG_MIN | ||
| 394 | #define INT_FAST8_MAX LONG_MAX | ||
| 395 | #define UINT_FAST8_MAX ULONG_MAX | ||
| 396 | |||
| 397 | #undef INT_FAST16_MIN | ||
| 398 | #undef INT_FAST16_MAX | ||
| 399 | #undef UINT_FAST16_MAX | ||
| 400 | #define INT_FAST16_MIN LONG_MIN | ||
| 401 | #define INT_FAST16_MAX LONG_MAX | ||
| 402 | #define UINT_FAST16_MAX ULONG_MAX | ||
| 403 | |||
| 404 | #undef INT_FAST32_MIN | ||
| 405 | #undef INT_FAST32_MAX | ||
| 406 | #undef UINT_FAST32_MAX | ||
| 407 | #define INT_FAST32_MIN LONG_MIN | ||
| 408 | #define INT_FAST32_MAX LONG_MAX | ||
| 409 | #define UINT_FAST32_MAX ULONG_MAX | ||
| 410 | |||
| 411 | #undef INT_FAST64_MIN | ||
| 412 | #undef INT_FAST64_MAX | ||
| 413 | #ifdef GL_INT64_T | ||
| 414 | # define INT_FAST64_MIN INT64_MIN | ||
| 415 | # define INT_FAST64_MAX INT64_MAX | ||
| 416 | #endif | ||
| 417 | |||
| 418 | #undef UINT_FAST64_MAX | ||
| 419 | #ifdef GL_UINT64_T | ||
| 420 | # define UINT_FAST64_MAX UINT64_MAX | ||
| 421 | #endif | ||
| 422 | |||
| 423 | /* 7.18.2.4. Limits of integer types capable of holding object pointers */ | ||
| 424 | |||
| 425 | #undef INTPTR_MIN | ||
| 426 | #undef INTPTR_MAX | ||
| 427 | #undef UINTPTR_MAX | ||
| 428 | #define INTPTR_MIN LONG_MIN | ||
| 429 | #define INTPTR_MAX LONG_MAX | ||
| 430 | #define UINTPTR_MAX ULONG_MAX | ||
| 431 | |||
| 432 | /* 7.18.2.5. Limits of greatest-width integer types */ | ||
| 433 | |||
| 434 | #undef INTMAX_MIN | ||
| 435 | #undef INTMAX_MAX | ||
| 436 | #ifdef INT64_MAX | ||
| 437 | # define INTMAX_MIN INT64_MIN | ||
| 438 | # define INTMAX_MAX INT64_MAX | ||
| 439 | #else | ||
| 440 | # define INTMAX_MIN INT32_MIN | ||
| 441 | # define INTMAX_MAX INT32_MAX | ||
| 442 | #endif | ||
| 443 | |||
| 444 | #undef UINTMAX_MAX | ||
| 445 | #ifdef UINT64_MAX | ||
| 446 | # define UINTMAX_MAX UINT64_MAX | ||
| 447 | #else | ||
| 448 | # define UINTMAX_MAX UINT32_MAX | ||
| 449 | #endif | ||
| 450 | |||
| 451 | /* 7.18.3. Limits of other integer types */ | ||
| 452 | |||
| 453 | /* ptrdiff_t limits */ | ||
| 454 | #undef PTRDIFF_MIN | ||
| 455 | #undef PTRDIFF_MAX | ||
| 456 | #if @APPLE_UNIVERSAL_BUILD@ | ||
| 457 | # ifdef _LP64 | ||
| 458 | # define PTRDIFF_MIN _STDINT_MIN (1, 64, 0l) | ||
| 459 | # define PTRDIFF_MAX _STDINT_MAX (1, 64, 0l) | ||
| 460 | # else | ||
| 461 | # define PTRDIFF_MIN _STDINT_MIN (1, 32, 0) | ||
| 462 | # define PTRDIFF_MAX _STDINT_MAX (1, 32, 0) | ||
| 463 | # endif | ||
| 464 | #else | ||
| 465 | # define PTRDIFF_MIN \ | ||
| 466 | _STDINT_MIN (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@) | ||
| 467 | # define PTRDIFF_MAX \ | ||
| 468 | _STDINT_MAX (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@) | ||
| 469 | #endif | ||
| 470 | |||
| 471 | /* sig_atomic_t limits */ | ||
| 472 | #undef SIG_ATOMIC_MIN | ||
| 473 | #undef SIG_ATOMIC_MAX | ||
| 474 | #define SIG_ATOMIC_MIN \ | ||
| 475 | _STDINT_MIN (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \ | ||
| 476 | 0@SIG_ATOMIC_T_SUFFIX@) | ||
| 477 | #define SIG_ATOMIC_MAX \ | ||
| 478 | _STDINT_MAX (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \ | ||
| 479 | 0@SIG_ATOMIC_T_SUFFIX@) | ||
| 480 | |||
| 481 | |||
| 482 | /* size_t limit */ | ||
| 483 | #undef SIZE_MAX | ||
| 484 | #if @APPLE_UNIVERSAL_BUILD@ | ||
| 485 | # ifdef _LP64 | ||
| 486 | # define SIZE_MAX _STDINT_MAX (0, 64, 0ul) | ||
| 487 | # else | ||
| 488 | # define SIZE_MAX _STDINT_MAX (0, 32, 0ul) | ||
| 489 | # endif | ||
| 490 | #else | ||
| 491 | # define SIZE_MAX _STDINT_MAX (0, @BITSIZEOF_SIZE_T@, 0@SIZE_T_SUFFIX@) | ||
| 492 | #endif | ||
| 493 | |||
| 494 | /* wchar_t limits */ | ||
| 495 | /* Get WCHAR_MIN, WCHAR_MAX. | ||
| 496 | This include is not on the top, above, because on OSF/1 4.0 we have a | ||
| 497 | sequence of nested includes | ||
| 498 | <wchar.h> -> <stdio.h> -> <getopt.h> -> <stdlib.h>, and the latter includes | ||
| 499 | <stdint.h> and assumes its types are already defined. */ | ||
| 500 | #if @HAVE_WCHAR_H@ && ! (defined WCHAR_MIN && defined WCHAR_MAX) | ||
| 501 | /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be | ||
| 502 | included before <wchar.h>. */ | ||
| 503 | # include <stddef.h> | ||
| 504 | # include <stdio.h> | ||
| 505 | # include <time.h> | ||
| 506 | # define _GL_JUST_INCLUDE_SYSTEM_WCHAR_H | ||
| 507 | # include <wchar.h> | ||
| 508 | # undef _GL_JUST_INCLUDE_SYSTEM_WCHAR_H | ||
| 509 | #endif | ||
| 510 | #undef WCHAR_MIN | ||
| 511 | #undef WCHAR_MAX | ||
| 512 | #define WCHAR_MIN \ | ||
| 513 | _STDINT_MIN (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@) | ||
| 514 | #define WCHAR_MAX \ | ||
| 515 | _STDINT_MAX (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@) | ||
| 516 | |||
| 517 | /* wint_t limits */ | ||
| 518 | #undef WINT_MIN | ||
| 519 | #undef WINT_MAX | ||
| 520 | #define WINT_MIN \ | ||
| 521 | _STDINT_MIN (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@) | ||
| 522 | #define WINT_MAX \ | ||
| 523 | _STDINT_MAX (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@) | ||
| 524 | |||
| 525 | #endif /* !defined __cplusplus || defined __STDC_LIMIT_MACROS */ | ||
| 526 | |||
| 527 | /* 7.18.4. Macros for integer constants */ | ||
| 528 | |||
| 529 | #if ! defined __cplusplus || defined __STDC_CONSTANT_MACROS | ||
| 530 | |||
| 531 | /* 7.18.4.1. Macros for minimum-width integer constants */ | ||
| 532 | /* According to ISO C 99 Technical Corrigendum 1 */ | ||
| 533 | |||
| 534 | /* Here we assume a standard architecture where the hardware integer | ||
| 535 | types have 8, 16, 32, optionally 64 bits, and int is 32 bits. */ | ||
| 536 | |||
| 537 | #undef INT8_C | ||
| 538 | #undef UINT8_C | ||
| 539 | #define INT8_C(x) x | ||
| 540 | #define UINT8_C(x) x | ||
| 541 | |||
| 542 | #undef INT16_C | ||
| 543 | #undef UINT16_C | ||
| 544 | #define INT16_C(x) x | ||
| 545 | #define UINT16_C(x) x | ||
| 546 | |||
| 547 | #undef INT32_C | ||
| 548 | #undef UINT32_C | ||
| 549 | #define INT32_C(x) x | ||
| 550 | #define UINT32_C(x) x ## U | ||
| 551 | |||
| 552 | #undef INT64_C | ||
| 553 | #undef UINT64_C | ||
| 554 | #if LONG_MAX >> 31 >> 31 == 1 | ||
| 555 | # define INT64_C(x) x##L | ||
| 556 | #elif defined _MSC_VER | ||
| 557 | # define INT64_C(x) x##i64 | ||
| 558 | #elif @HAVE_LONG_LONG_INT@ | ||
| 559 | # define INT64_C(x) x##LL | ||
| 560 | #endif | ||
| 561 | #if ULONG_MAX >> 31 >> 31 >> 1 == 1 | ||
| 562 | # define UINT64_C(x) x##UL | ||
| 563 | #elif defined _MSC_VER | ||
| 564 | # define UINT64_C(x) x##ui64 | ||
| 565 | #elif @HAVE_UNSIGNED_LONG_LONG_INT@ | ||
| 566 | # define UINT64_C(x) x##ULL | ||
| 567 | #endif | ||
| 568 | |||
| 569 | /* 7.18.4.2. Macros for greatest-width integer constants */ | ||
| 570 | |||
| 571 | #undef INTMAX_C | ||
| 572 | #if @HAVE_LONG_LONG_INT@ && LONG_MAX >> 30 == 1 | ||
| 573 | # define INTMAX_C(x) x##LL | ||
| 574 | #elif defined GL_INT64_T | ||
| 575 | # define INTMAX_C(x) INT64_C(x) | ||
| 576 | #else | ||
| 577 | # define INTMAX_C(x) x##L | ||
| 578 | #endif | ||
| 579 | |||
| 580 | #undef UINTMAX_C | ||
| 581 | #if @HAVE_UNSIGNED_LONG_LONG_INT@ && ULONG_MAX >> 31 == 1 | ||
| 582 | # define UINTMAX_C(x) x##ULL | ||
| 583 | #elif defined GL_UINT64_T | ||
| 584 | # define UINTMAX_C(x) UINT64_C(x) | ||
| 585 | #else | ||
| 586 | # define UINTMAX_C(x) x##UL | ||
| 587 | #endif | ||
| 588 | |||
| 589 | #endif /* !defined __cplusplus || defined __STDC_CONSTANT_MACROS */ | ||
| 590 | |||
| 591 | #endif /* _GL_STDINT_H */ | ||
| 592 | #endif /* !defined _GL_STDINT_H && !defined _GL_JUST_INCLUDE_SYSTEM_STDINT_H */ | ||