|
#include <stdint.h>
#include <cstdint>
typedef int __int32_t;/usr/include/sys/_stdint.h
typedef __int32_t int32_t;x86用FreeBSDでは、間接的にintで定義される。
#define INT32_MIN (-0x7fffffff-1)
#define INT32_MAX 0x7fffffff
typedef int int32_t;また、stdint.h に、次のような定義がある。
# define INT32_MIN (-2147483647-1)
# define INT32_MAX (2147483647)