Switch from include guard to pragma once.
This pragma is so widley supported it is a defacto standard. It has the
advantage over include guards in that a unique macro identifier does not
need to be created and maintained.
Change-Id: Id12f56d9970fdfb63d45c92e428d3dbe44b2ab0e
diff --git a/inc/hf/fdt_handler.h b/inc/hf/fdt_handler.h
index 4d3fa8f..d21c771 100644
--- a/inc/hf/fdt_handler.h
+++ b/inc/hf/fdt_handler.h
@@ -1,5 +1,4 @@
-#ifndef _FDT_HANDLER_H
-#define _FDT_HANDLER_H
+#pragma once
#include "hf/boot_params.h"
#include "hf/fdt.h"
@@ -7,5 +6,3 @@
bool fdt_get_boot_params(paddr_t fdt_addr, struct boot_params *p);
bool fdt_patch(paddr_t fdt_addr, struct boot_params_update *p);
-
-#endif /* _FDT_HANDLER_H */