am 560e9f7e: Merge "Ensure that <stdint.h> defines SIZE_MAX and friends."
* commit '560e9f7e7a39e02aca96709043ca06f562f75d58': Ensure that <stdint.h> defines SIZE_MAX and friends.
This commit is contained in:
commit
c1e4183c7a
@ -30,7 +30,6 @@
|
|||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <sys/_types.h>
|
#include <sys/_types.h>
|
||||||
#include <machine/limits.h> /* For SIZE_MAX. */
|
|
||||||
|
|
||||||
#if !defined(__cplusplus) || defined(__STDC_LIMIT_MACROS)
|
#if !defined(__cplusplus) || defined(__STDC_LIMIT_MACROS)
|
||||||
# define __STDINT_LIMITS
|
# define __STDINT_LIMITS
|
||||||
@ -227,6 +226,25 @@ typedef int64_t intmax_t;
|
|||||||
# define UINTMAX_C(c) UINT64_C(c)
|
# define UINTMAX_C(c) UINT64_C(c)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* sig_atomic_t, size_t, wchar_t, and wint_t.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef __STDINT_LIMITS
|
||||||
|
# define SIG_ATOMIC_MAX INT32_MAX
|
||||||
|
# define SIG_ATOMIC_MIN INT32_MIN
|
||||||
|
|
||||||
|
# define SIZE_MAX UINT32_MAX
|
||||||
|
|
||||||
|
# ifndef WCHAR_MAX /* These might also have been defined by <wchar.h>. */
|
||||||
|
# define WCHAR_MAX INT32_MAX
|
||||||
|
# define WCHAR_MIN INT32_MIN
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# define WINT_MAX INT32_MAX
|
||||||
|
# define WINT_MIN INT32_MIN
|
||||||
|
#endif
|
||||||
|
|
||||||
#define _BITSIZE 32
|
#define _BITSIZE 32
|
||||||
|
|
||||||
/* Keep the kernel from trying to define these types... */
|
/* Keep the kernel from trying to define these types... */
|
||||||
|
@ -65,8 +65,11 @@ typedef enum {
|
|||||||
WC_TYPE_MAX
|
WC_TYPE_MAX
|
||||||
} wctype_t;
|
} wctype_t;
|
||||||
|
|
||||||
|
#ifndef WCHAR_MAX
|
||||||
#define WCHAR_MAX INT_MAX
|
#define WCHAR_MAX INT_MAX
|
||||||
#define WCHAR_MIN INT_MIN
|
#define WCHAR_MIN INT_MIN
|
||||||
|
#endif
|
||||||
|
|
||||||
#define WEOF ((wint_t)(-1))
|
#define WEOF ((wint_t)(-1))
|
||||||
|
|
||||||
extern wint_t btowc(int);
|
extern wint_t btowc(int);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user