#include "libc/stdio.h" char show_tics=0; void schedule(){ } void clock(){ static int tic=0; static int sec=0; tic++; if(tic>=20){ tic=0; sec++; if(show_tics) putchar('.'); } schedule(); }