Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/share/doc/autoconf-archive/html/ drwxr-xr-x | |
| Viewing file: Select action/file-type: Next: ax_define_sub_path, Previous: ax_decl_wchar_max, Up: The Macros ax_define_integer_bitsSynopsisAX_DEFINE_INTEGER_BITS (TYPE [, CANDIDATE-TYPE]...) DescriptionGiven a TYPE of the form "int##_t" or "uint##_t", see if the datatype TYPE is predefined. If not, then define TYPE – both with AC_DEFINE and as a shell variable – to the first datatype of exactly ## bits in a list of CANDIDATE-TYPEs. If none of the CANDIDATE-TYPEs contains exactly ## bits, then set the TYPE shell variable to "no". For example, the following ensures that uint64_t is defined as a 64-bit datatype: AX_DEFINE_INTEGER_BITS(uint64_t, unsigned long long, unsigned __int64, long)
if test "$uint64_t" = no; then
AC_MSG_ERROR([unable to continue without a 64-bit datatype])
fi
You should then put the following in your C code to ensure that all datatypes defined by AX_DEFINE_INTEGER_BITS are visible to your program: #include "config.h" #if HAVE_INTTYPES_H # include <inttypes.h> #else # if HAVE_STDINT_H # include <stdint.h> # endif #endif Source CodeDownload the latest version of ax_define_integer_bits.m4 or browse the macro’s revision history. LicenseCopyright © 2008 Scott Pakin pakin@uiuc.edu Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty. |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0057 ]-- |