

void
timers_init() {
        struct timer *t;

        for (t=timers;t<&timers[MAX_TIMERS];t++)
                t->inuse = FALSE;
}

listing 2


