#include "tests.h" #include #ifdef __NR_sync # include # include int main(void) { printf("sync() = %ld\n", syscall(__NR_sync)); puts("+++ exited with 0 +++"); return 0; } #else SKIP_MAIN_UNDEFINED("__NR_sync") #endif