Skip to content

Commit 8ca65de

Browse files
committed
fix include guards in event loop
1 parent 361593d commit 8ca65de

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/event_loop.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifndef _EVENT_LOOP_H
2+
#define _EVENT_LOOP_H
3+
14
#include "util/refcounting.h"
25

36
struct evloop;
@@ -45,3 +48,5 @@ struct evthread *evthread_start();
4548
struct evloop *evthread_get_evloop(struct evthread *thread);
4649

4750
void evthread_join(struct evthread *thread);
51+
52+
#endif // _EVENT_LOOP_H

0 commit comments

Comments
 (0)