ext-cryptopp/TestPrograms/test_newlib.cpp

9 lines
118 B
C++
Raw Permalink Normal View History

2018-11-17 20:50:04 +00:00
#include <string>
int main(int argc, char* argv[])
{
#ifndef __NEWLIB__
2020-08-06 01:43:23 +00:00
int x[-1];
2018-11-17 20:50:04 +00:00
#endif
2020-08-06 01:43:23 +00:00
return 0;
2018-11-17 20:50:04 +00:00
}