From a1e61b61c2251e8ea42a008b7e3cc6f37a6605d6 Mon Sep 17 00:00:00 2001 From: Jaeden Amero Date: Thu, 22 Jul 2021 14:11:08 +0100 Subject: [PATCH] equeue: Add missing header guards The header equeue_stub.h was missing header guards to enforce single inclusion. Add some header guards. --- events/tests/UNITTESTS/doubles/equeue_stub.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/events/tests/UNITTESTS/doubles/equeue_stub.h b/events/tests/UNITTESTS/doubles/equeue_stub.h index 648d920058..fcdddf9e53 100644 --- a/events/tests/UNITTESTS/doubles/equeue_stub.h +++ b/events/tests/UNITTESTS/doubles/equeue_stub.h @@ -15,6 +15,9 @@ * limitations under the License. */ +#ifndef __EQUEUE_STUB_H__ +#define __EQUEUE_STUB_H__ + #include "stdint.h" #include "stdbool.h" @@ -24,3 +27,5 @@ typedef struct { } equeue_stub_def; extern equeue_stub_def equeue_stub; + +#endif