#include <stdio.h> void sleep(int) { /* 需要补充 */ } void abc() { printf( "ABC\n"); } int main(void) { while(1) { sleep(2); abc(); } return 0; }