Add include guard to crc32.h

Change-Id: I65d7b6e0728f262a0d80e956f90e39a0e94f5934
Signed-off-by: Austin Schuh <austin.linux@gmail.com>
diff --git a/aos/events/logging/crc32.h b/aos/events/logging/crc32.h
index 9e7c3f2..b193f61 100644
--- a/aos/events/logging/crc32.h
+++ b/aos/events/logging/crc32.h
@@ -1,3 +1,6 @@
+#ifndef AOS_EVENTS_LOGGING_CRC32_H_
+#define AOS_EVENTS_LOGGING_CRC32_H_
+
 #include <stdint.h>
 
 #include <optional>
@@ -13,3 +16,5 @@
     std::optional<uint32_t> current_checksum = std::nullopt);
 
 }  // namespace aos
+
+#endif  // AOS_EVENTS_LOGGING_CRC32_H_