mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
14 lines
187 B
C++
14 lines
187 B
C++
#include <stdint.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
#if __ARM_ARCH >= 7
|
|
// Do nothing
|
|
#elif __ARM_ARCH_7A__
|
|
// Do nothing
|
|
#else
|
|
int n[-1];
|
|
#endif
|
|
return 0;
|
|
}
|