i3bar: Make header declarations extern

See #3914
This commit is contained in:
Orestis Floros
2020-01-25 16:26:54 +01:00
parent e9f011397a
commit d14e59b3a7
8 changed files with 13 additions and 6 deletions

View File

@ -17,7 +17,7 @@
typedef struct rect_t rect;
struct ev_loop *main_loop;
extern struct ev_loop *main_loop;
struct rect_t {
int x;
@ -82,8 +82,8 @@ struct status_block {
blocks;
};
TAILQ_HEAD(statusline_head, status_block)
statusline_head;
extern TAILQ_HEAD(statusline_head, status_block)
statusline_head;
#include "child.h"
#include "ipc.h"