delorie.com/archives/browse.cgi   search  
Mail Archives: djgpp-workers/2001/02/03/07:21:51

Date: Sat, 03 Feb 2001 14:21:28 +0200
From: "Eli Zaretskii" <eliz AT is DOT elta DOT co DOT il>
Sender: halo1 AT zahav DOT net DOT il
To: djgpp-workers AT delorie DOT com
Message-Id: <3791-Sat03Feb2001142127+0200-eliz@is.elta.co.il>
X-Mailer: Emacs 20.6 (via feedmail 8.3.emacs20_6 I) and Blat ver 1.8.6
Subject: stdint.h
Reply-To: djgpp-workers AT delorie DOT com

Comments?

--- /dev/null	Sat Feb  3 14:19:47 2001
+++ include/stdint.h	Sat Feb  3 14:18:14 2001
@@ -0,0 +1,142 @@
+#ifndef __dj_stdint__h_
+#define __dj_stdint__h_
+
+typedef signed char int_least8_t;
+typedef unsigned char uint_least8_t;
+typedef signed char int_fast8_t;
+typedef unsigned char uint_fast8_t;
+typedef signed char int8_t;
+typedef unsigned char uint8_t;
+
+typedef signed short int int_least16_t;
+typedef unsigned short int uint_least16_t;
+typedef signed int int_fast16_t;
+typedef unsigned int uint_fast16_t;
+typedef signed short int int16_t;
+typedef unsigned short int uint16_t;
+
+typedef signed int int_least32_t;
+typedef unsigned int uint_least32_t;
+typedef signed int int_fast32_t;
+typedef unsigned int uint_fast32_t;
+typedef signed long int32_t;
+typedef unsigned long uint32_t;
+
+__extension__ typedef signed long long int_least64_t;
+__extension__ typedef unsigned long long uint_least64_t;
+__extension__ typedef signed long long int_fast64_t;
+__extension__ typedef unsigned long long uint_fast64_t;
+__extension__ typedef signed long long int64_t;
+__extension__ typedef unsigned long long uint64_t;
+
+typedef long int intptr_t;
+typedef unsigned long uintptr_t;
+
+__extension__ typedef signed long long intmax_t;
+__extension__ typedef unsigned long long uintmax_t;
+
+/* ANSI/ISO C99 says these should not be visible in C++ unless
+   explicitly requested.  */
+
+#if !defined(__cplusplus) || defined(__STDC_LIMIT_MACROS)
+
+#define INT_LEAST8_MAX	 127
+#define UINT_LEAST8_MAX	 255
+#define INT_FAST8_MAX	 127
+#define UINT_FAST8_MAX	 255
+#define INT8_MAX	 127
+#define INT_LEAST8_MIN	 (-128)
+#define INT_FAST8_MIN	 (-128)
+#define INT8_MIN	 (-128)
+
+#define INT_LEAST16_MAX	 32767
+#define UINT_LEAST16_MAX 65535
+#define INT_FAST16_MAX	 2147483647
+#define UINT_FAST16_MAX	 4294967295U
+#define INT16_MAX	 32767
+#define UINT16_MAX	 65535
+#define INT_LEAST16_MIN	 (-32768)
+#define INT_FAST16_MIN	 (-2147483647-1)
+#define INT16_MIN	 (-32768)
+
+#define INT_LEAST32_MAX	 2147483647
+#define UINT_LEAST32_MAX 4294967295U
+#define INT_FAST32_MAX	 2147483647
+#define UINT_FAST32_MAX	 4294967295U
+#define INT32_MAX	 2147483647L
+#define UINT32_MAX	 4294967295UL
+#define INT_LEAST32_MIN	 (-2147483647-1)
+#define INT_FAST32_MIN	 (-2147483647-1)
+#define INT32_MIN	 (-2147483647L-1)
+
+#define INT_LEAST64_MAX	 9223372036854775807LL
+#define UINT_LEAST64_MAX 18446744073709551615ULL
+#define INT_FAST64_MAX	 9223372036854775807LL
+#define UINT_FAST64_MAX	 18446744073709551615ULL
+#define INT64_MAX	 9223372036854775807LL
+#define UINT64_MAX	 18446744073709551615ULL
+#define INT_LEAST64_MIN	 (-9223372036854775807LL-1LL)
+#define INT_FAST64_MIN	 (-9223372036854775807LL-1LL)
+#define INT64_MIN	 (-9223372036854775807LL-1LL)
+
+#define INTPTR_MAX	2147483647L
+#define INTPTR_MIN	(-2147483647L-1L)
+#define UINTPTR_MAX	0xffffffffUL
+
+#define INTMAX_MAX	9223372036854775807LL
+#define UINTMAX_MAX	18446744073709551615ULL
+#define INTMAX_MIN	(-9223372036854775807LL-1LL)
+
+#define PTRDIFF_MAX	2147483647
+#define PTRDIFF_MIN	(-2147483647-1)
+#define SIG_ATOMIC_MAX	2147483647
+#define SIG_ATOMIC_MIN	(-2147483647-1)
+#define SIZE_MAX	4294967295U
+
+  /* These are defined by limits.h, so make them conditional.  */
+#ifndef WCHAR_MAX
+#define WCHAR_MAX	32767
+#endif
+#ifndef WCHAR_MIN
+#define WCHAR_MIN	0
+#endif
+#ifndef WINT_MAX
+#define WINT_MAX	2147483647
+#endif
+#ifndef WINT_MIN
+#define WINT_MIN	0
+#endif
+
+#endif /* !__cplusplus || __STDC_LIMIT_MACROS */
+
+
+#if !defined(__cplusplus) || defined(__STDC_CONSTANT_MACROS)
+
+#define INT8_C(x)	x
+#define UINT8_C(x)	x ## U
+#define INT16_C(x)	x
+#define UINT16_C(x)	x ## U
+#define INT32_C(x)	x
+#define UINT32_C(x)	x ## U
+#define INT64_C(x)	x ## LL
+#define UINT64_C(x)	x ## ULL
+
+#define INTMAX_C(x)	x ## LL
+#define UINTMAX_C(x)	x ## ULL
+
+#endif /* !__cplusplus || __STDC_CONSTANT_MACROS */
+
+#ifndef __dj_ENFORCE_ANSI_FREESTANDING
+
+#ifndef __STRICT_ANSI__
+
+#ifndef _POSIX_SOURCE
+
+#endif /* !_POSIX_SOURCE */
+#endif /* !__STRICT_ANSI__ */
+#endif /* !__dj_ENFORCE_ANSI_FREESTANDING */
+
+#ifndef __dj_ENFORCE_FUNCTION_CALLS
+#endif /* !__dj_ENFORCE_FUNCTION_CALLS */
+
+#endif /* !__dj_stdint__h_ */

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019