equeue: Add missing header guards

The header equeue_stub.h was missing header guards to enforce single
inclusion. Add some header guards.
pull/14948/head
Jaeden Amero 2021-07-22 14:11:08 +01:00
parent b17ffaa68a
commit a1e61b61c2
1 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,9 @@
* limitations under the License. * limitations under the License.
*/ */
#ifndef __EQUEUE_STUB_H__
#define __EQUEUE_STUB_H__
#include "stdint.h" #include "stdint.h"
#include "stdbool.h" #include "stdbool.h"
@ -24,3 +27,5 @@ typedef struct {
} equeue_stub_def; } equeue_stub_def;
extern equeue_stub_def equeue_stub; extern equeue_stub_def equeue_stub;
#endif