0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-22 09:41:54 +00:00

Defer: fixup missing include guards

This commit is contained in:
Maria Matejka 2024-11-10 13:32:16 +01:00
parent c0319183a5
commit 03f51079c1

View File

@ -12,6 +12,9 @@
* full-blown event list overhead. Therefore, one just can use this tool
* instead. */
#ifndef _BIRD_LIB_DEFER_H_
#define _BIRD_LIB_DEFER_H_
#include "lib/birdlib.h"
#include "lib/event.h"
#include "lib/resource.h"
@ -46,3 +49,5 @@ static inline void defer_call(struct deferred_call *call, size_t actual_size) {
*local_deferred.last = a;
local_deferred.last = &a->next;
}
#endif