mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-19 03:20:55 +00:00
8 lines
143 B
C++
8 lines
143 B
C++
|
#include <cstddef>
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
enum {N = (sizeof(std::size_t) == 4 ? 4 : -1)};
|
||
|
int x[N];
|
||
|
return 0;
|
||
|
}
|