summaryrefslogtreecommitdiff
path: root/src/common/timers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/timers.h')
-rw-r--r--src/common/timers.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/timers.h b/src/common/timers.h
index 2c36af172d..5f918f8e15 100644
--- a/src/common/timers.h
+++ b/src/common/timers.h
@@ -9,7 +9,8 @@
struct monotime_t;
typedef struct timeout tor_timer_t;
-typedef void (*timer_cb_fn_t)(tor_timer_t *, void *, const struct monotime_t *);
+typedef void (*timer_cb_fn_t)(tor_timer_t *, void *,
+ const struct monotime_t *);
tor_timer_t *timer_new(timer_cb_fn_t cb, void *arg);
void timer_set_cb(tor_timer_t *t, timer_cb_fn_t cb, void *arg);
void timer_schedule(tor_timer_t *t, const struct timeval *delay);