mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-02-06 04:04:17 +00:00
9 lines
118 B
C++
9 lines
118 B
C++
|
#include <string>
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
#ifndef __NEWLIB__
|
||
|
int x[-1];
|
||
|
#endif
|
||
|
return 0;
|
||
|
}
|