diff options
author | Krzysztof Wieclaw <k.wieclaw@samsung.com> | 2018-09-25 14:34:55 +0200 |
---|---|---|
committer | Krzysztof Wieclaw <k.wieclaw@samsung.com> | 2018-10-02 20:17:39 +0200 |
commit | 59c8ee7870107a995039ba4df8e41bc2f3da0c7b (patch) | |
tree | bfa778448f498dddc69d7f3cdfab1a282c721618 | |
parent | 717de92927037c164c2ce0276b2dd7260f1a956d (diff) | |
download | gear-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.h | 4 |
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_ |