add #ifdef to every header
Test: mma
Change-Id: I8fdbe1c0dad8c3401c046d8bc6fba4793e93a7c1
diff --git a/transport/include/hidl/Static.h b/transport/include/hidl/Static.h
index 0522e44..6ff6a9f 100644
--- a/transport/include/hidl/Static.h
+++ b/transport/include/hidl/Static.h
@@ -17,6 +17,9 @@
// All static variables go here, to control initialization and
// destruction order in the library.
+#ifndef ANDROID_HARDWARE_HIDL_STATIC_H
+#define ANDROID_HARDWARE_HIDL_STATIC_H
+
#include <functional>
#include <android/hidl/base/1.0/IBase.h>
@@ -59,3 +62,5 @@
} // namespace details
} // namespace hardware
} // namespace android
+
+#endif