Skip to content

Commit a1e61b6

Browse files
committed
equeue: Add missing header guards
The header equeue_stub.h was missing header guards to enforce single inclusion. Add some header guards.
1 parent b17ffaa commit a1e61b6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

events/tests/UNITTESTS/doubles/equeue_stub.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
* limitations under the License.
1616
*/
1717

18+
#ifndef __EQUEUE_STUB_H__
19+
#define __EQUEUE_STUB_H__
20+
1821
#include "stdint.h"
1922
#include "stdbool.h"
2023

@@ -24,3 +27,5 @@ typedef struct {
2427
} equeue_stub_def;
2528

2629
extern equeue_stub_def equeue_stub;
30+
31+
#endif

0 commit comments

Comments
 (0)