|
#include <stdint.h>
#include <cstdint>
typedef unsigned short __uint16_t;/usr/include/sys/_stdint.h
typedef __uint16_t uint16_t;x86用FreeBSDでは、間接的にintで定義される。
#define UINT16_MAX 0xffff
typedef unsigned short int uint16_t;また、stdint.h に、次のような定義がある。
# define UINT16_MAX (65535)