swaybar: fix empty function prototypes

This commit is contained in:
Ian Fan 2018-09-16 11:24:24 +01:00
parent 952453480f
commit 9932c6a1f1
2 changed files with 4 additions and 4 deletions

View file

@ -19,8 +19,8 @@ bool remove_event(int fd);
bool remove_timer(timer_t timer);
// Blocks and returns after sending callbacks
void event_loop_poll();
void event_loop_poll(void);
void init_event_loop();
void init_event_loop(void);
#endif