xref: /aosp_15_r20/external/pytorch/torch/abi-check.cpp (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #include <iostream>
2 
main()3 int main() {
4 #ifdef _GLIBCXX_USE_CXX11_ABI
5   std::cout << _GLIBCXX_USE_CXX11_ABI;
6 #else
7   std::cout << 0;
8 #endif
9 }
10