summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Wieclaw <k.wieclaw@samsung.com>2018-09-25 14:34:55 +0200
committerKrzysztof Wieclaw <k.wieclaw@samsung.com>2018-10-02 20:17:39 +0200
commit59c8ee7870107a995039ba4df8e41bc2f3da0c7b (patch)
treebfa778448f498dddc69d7f3cdfab1a282c721618
parent717de92927037c164c2ce0276b2dd7260f1a956d (diff)
downloadgear-racing-controller-59c8ee7870107a995039ba4df8e41bc2f3da0c7b.tar.gz
gear-racing-controller-59c8ee7870107a995039ba4df8e41bc2f3da0c7b.tar.bz2
gear-racing-controller-59c8ee7870107a995039ba4df8e41bc2f3da0c7b.zip
Fixed command.h file - added header guardian
Change-Id: Iefb1a5d6b4010082820c3d8e3bdd1f7852ce5c54 Signed-off-by: Krzysztof Wieclaw <k.wieclaw@samsung.com>
-rw-r--r--inc/command.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/inc/command.h b/inc/command.h
index 2d8ac3c..2efffeb 100644
--- a/inc/command.h
+++ b/inc/command.h
@@ -14,6 +14,8 @@
* limitations under the License.
*/
+#ifndef COMMAND_H_
+#define COMMAND_H_
/**
* @brief Types of commands used in communication.
@@ -40,3 +42,5 @@ typedef struct __command {
} camera_position;
} data;
} command_s;
+
+#endif //COMMAND_H_