From c8951a2621445780030f571f9a5256131d265539 Mon Sep 17 00:00:00 2001 From: Liviu Chircu Date: Fri, 7 Feb 2020 17:54:47 +0200 Subject: [PATCH] qrouting: Add missing include guards --- modules/qrouting/qr_load.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/qrouting/qr_load.h b/modules/qrouting/qr_load.h index 014722b929..9b69ccd161 100644 --- a/modules/qrouting/qr_load.h +++ b/modules/qrouting/qr_load.h @@ -21,6 +21,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#ifndef __QR_LOAD_H__ +#define __QR_LOAD_H__ + #include "../../db/db.h" #include "../../rw_locking.h" @@ -65,3 +68,5 @@ extern db_func_t qr_dbf; extern db_con_t *qr_db_hdl; int qr_reload(db_func_t *qr_dbf, db_con_t *qr_db_hdl); + +#endif /* __QR_LOAD_H__ */