Merge pull request #314 from oliverschmidt/master

Recent changes in telnetd make exporting of those two necessary.
This commit is contained in:
Oliver Schmidt 2013-07-30 15:08:03 -07:00
commit c259e6a093
1 changed files with 2 additions and 2 deletions

View File

@ -88,10 +88,10 @@ struct timer {
clock_time_t interval;
};
void timer_set(struct timer *t, clock_time_t interval);
CCIF void timer_set(struct timer *t, clock_time_t interval);
void timer_reset(struct timer *t);
void timer_restart(struct timer *t);
int timer_expired(struct timer *t);
CCIF int timer_expired(struct timer *t);
clock_time_t timer_remaining(struct timer *t);