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/vmapi/hf/call.h b/inc/vmapi/hf/call.h
index dd339a0..e8391f6 100644
--- a/inc/vmapi/hf/call.h
+++ b/inc/vmapi/hf/call.h
@@ -1,5 +1,4 @@
-#ifndef _VMAPI_HF_HVC_H
-#define _VMAPI_HF_HVC_H
+#pragma once
#if defined(__linux__) && defined(__KERNEL__)
@@ -120,5 +119,3 @@
{
return hf_call(HF_RPC_REPLY, size, ack, 0);
}
-
-#endif /* _VMAPI_HF_HVC_H */