From ee56c9250fc88eb1983bc587dc5052a70cb88e0f Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 9 Jan 2018 07:17:06 +0100 Subject: [PATCH] libnm: add include guard to nm-json.h --- libnm-core/nm-json.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libnm-core/nm-json.h b/libnm-core/nm-json.h index 3db37aac3b..2465ba385d 100644 --- a/libnm-core/nm-json.h +++ b/libnm-core/nm-json.h @@ -15,6 +15,8 @@ * * Copyright 2017, 2018 Red Hat, Inc. */ +#ifndef __NM_JSON_H__ +#define __NM_JSON_H__ gboolean nm_jansson_load (void); @@ -43,3 +45,5 @@ gboolean nm_jansson_load (void); #define json_integer_value (*_nm_jansson_json_integer_value) #define json_string_value (*_nm_jansson_json_string_value) #endif + +#endif /* __NM_JSON_H__ */