summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViktor Verebelyi <vviktor2@gmail.com>2020-11-05 03:31:10 +0000
committerViktor Verebelyi <vviktor2@gmail.com>2020-11-05 03:31:10 +0000
commit396239376eaa160d0038182dd05ecb2cf3cebea9 (patch)
treea4b5a5e2ed08d2131d5c8417b9a1a5ae25db49f8
parent258d82154d977b6202efa45c24f1f4c7a73b5588 (diff)
downloadnavit-396239376eaa160d0038182dd05ecb2cf3cebea9.tar.gz
Fix:core: Add include guards to vehicleprofile.h
-rw-r--r--navit/vehicleprofile.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/navit/vehicleprofile.h b/navit/vehicleprofile.h
index 58ffa1489..572eeca77 100644
--- a/navit/vehicleprofile.h
+++ b/navit/vehicleprofile.h
@@ -18,6 +18,9 @@
*/
+#ifndef NAVIT_VEHICLEPROFILE_H
+#define NAVIT_VEHICLEPROFILE_H
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -69,3 +72,5 @@ char * vehicleprofile_get_name(struct vehicleprofile *this_);
#ifdef __cplusplus
}
#endif
+
+#endif