source: ThirdParty/mpqc_open/src/lib/util/misc/scinttest.cc@ a844d8

Candidate_v1.6.1
Last change on this file since a844d8 was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 395 bytes
Line 
1
2#include <iostream>
3
4#include <util/misc/scint.h>
5
6using namespace sc;
7
8main()
9{
10 std::cout << "sizeof(sc_int8_t) = " << sizeof(sc_int8_t) << std::endl;
11 std::cout << "sizeof(sc_int16_t) = " << sizeof(sc_int16_t) << std::endl;
12 std::cout << "sizeof(sc_int32_t) = " << sizeof(sc_int32_t) << std::endl;
13 std::cout << "sizeof(sc_int64_t) = " << sizeof(sc_int64_t) << std::endl;
14
15 return 0;
16}
Note: See TracBrowser for help on using the repository browser.