certificate/include/cryptopp/TestPrograms/test_glibc.cpp

9 lines
111 B
C++
Raw Normal View History

2025-06-26 15:15:38 +00:00
#include <string>
int main(int argc, char* argv[])
{
#ifndef __GLIBCXX__
int x[-1];
#endif
return 0;
}