mirror of https://github.com/ARMmbed/mbed-os.git
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
parent
b17ffaa68a
commit
a1e61b61c2
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue