system/apex/tests/testdata/sharedlibs/build/noop.cc

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

2025-08-25 08:01:50 +08:00
#include <iostream>
#include "sharedlibstest.h"
int main() {
std::cout << "This binary should never be executed";
std::cout << sharedlibstest::getSharedLibsTestFingerprint();
return 1;
}