--- libaitio/example/bpf.c 2013/12/15 22:57:20 1.4 +++ libaitio/example/bpf.c 2016/08/11 16:18:15 1.4.12.1 @@ -1,3 +1,10 @@ +#ifdef __linux__ +int main() +{ + return 0; +} +#else + #include #include #include @@ -375,3 +382,5 @@ main(int argc, char **argv) printf("0.%09lu per/iteration\n", ts_end.tv_sec + ts_end.tv_nsec / i); return 0; } + +#endif