summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPekka Paalanen <pekka.paalanen@collabora.co.uk>2016-03-15 17:39:22 +0200
committerBryce Harrington <bryce@osg.samsung.com>2016-03-15 15:37:27 -0700
commitf72df1dfe13de94e4b16f30aa81291da15614202 (patch)
treecd9c89e5b2e79cf849af9c70408bca57a694daee
parentae8c3d876b7795f9cdf00d3f954559230c007ed0 (diff)
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 <pekka.paalanen@collabora.co.uk> Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
-rw-r--r--ivi-shell/ivi-shell.h5
1 files changed, 5 insertions, 0 deletions
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 <stdbool.h>
#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 */