aboutsummaryrefslogtreecommitdiffstats
path: root/cxx11/c++11-test-cstdint.cpp
blob: be2878f2f0013d219206a59edd864059ce03bf5c (plain)
1
2
3
4
5
6
7
8
9
10
#include <cstdint>
int main()
{
	bool test = 
		(sizeof(int8_t) == 1) &&
		(sizeof(int16_t) == 2) &&
		(sizeof(int32_t) == 4) &&
		(sizeof(int64_t) == 8);
	return test ? 0 : 1;
}