aboutsummaryrefslogtreecommitdiffstats
path: root/cxx11/c++11-test-cstdint.cpp
blob: 58d4381e78909f2cb8376d2d6a7014b5ce9e95c0 (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;
}