From 88a973e9f6873948055ee7ddfca80254012089ef Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Mon, 17 Jul 2017 16:33:07 +0200 Subject: [PATCH] vlc_modules.h: protect multiple includes Signed-off-by: Jean-Baptiste Kempf --- include/vlc_modules.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/vlc_modules.h b/include/vlc_modules.h index 2be48f0b2a..c2d3c26d20 100644 --- a/include/vlc_modules.h +++ b/include/vlc_modules.h @@ -21,6 +21,9 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ +#ifndef VLC_MODULES_H +#define VLC_MODULES_H 1 + /** * \file * This file defines functions for modules in vlc @@ -78,3 +81,5 @@ VLC_USED static inline bool module_is_main( const module_t * p_module ) { return !strcmp( module_get_object( p_module ), "core" ); } + +#endif /* VLC_MODULES_H */