blob: e4005d43a4168df24e49cea7bad3411b4e476315 [file] [log] [blame]
Guillaume Chateletdfdac6a2019-01-17 18:00:21 +01001#include <stdio.h>
Guillaume Chatelet22a53622020-09-23 11:52:20 +02002
Guillaume Chateletdfdac6a2019-01-17 18:00:21 +01003#include "cpu-features.h"
4
5int main() {
6 printf("android_getCpuFamily()=%d\n", android_getCpuFamily());
7 printf("android_getCpuFeatures()=0x%08llx\n", android_getCpuFeatures());
8 printf("android_getCpuCount()=%d\n", android_getCpuCount());
9#ifdef __arm__
10 printf("android_getCpuIdArm()=0x%04x\n", android_getCpuIdArm());
11#endif //__arm__
12}