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/addr.h b/inc/hf/addr.h
index 1d4ec39..14e21c0 100644
--- a/inc/hf/addr.h
+++ b/inc/hf/addr.h
@@ -1,5 +1,4 @@
-#ifndef _ADDR_H
-#define _ADDR_H
+#pragma once
 
 #include <stddef.h>
 #include <stdint.h>
@@ -118,5 +117,3 @@
 {
 	return (void *)va_addr(va);
 }
-
-#endif /* _ADDR_H */