From f72df1dfe13de94e4b16f30aa81291da15614202 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Tue, 15 Mar 2016 17:39:22 +0200 Subject: [PATCH] ivi-shell: add include guards on ivi-shell.h It's our standard practice. This file will get used a bit more in the future. Signed-off-by: Pekka Paalanen Reviewed-by: Bryce Harrington --- ivi-shell/ivi-shell.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ivi-shell/ivi-shell.h b/ivi-shell/ivi-shell.h index 9a05eb2a..744d9691 100644 --- a/ivi-shell/ivi-shell.h +++ b/ivi-shell/ivi-shell.h @@ -23,6 +23,9 @@ * SOFTWARE. */ +#ifndef WESTON_IVI_SHELL_H +#define WESTON_IVI_SHELL_H + #include #include "compositor.h" @@ -65,3 +68,5 @@ input_panel_setup(struct ivi_shell *shell); void input_panel_destroy(struct ivi_shell *shell); + +#endif /* WESTON_IVI_SHELL_H */