From c37b2582d7bcb37bfe00b9ae779a59fe4f54fcc4 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Sat, 5 Dec 2015 11:20:22 +0700 Subject: [PATCH] modify header guard of unicorn_dynload.h for consistency --- include/unicorn/unicorn_dynload.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/unicorn/unicorn_dynload.h b/include/unicorn/unicorn_dynload.h index 73014d92..138ad08e 100644 --- a/include/unicorn/unicorn_dynload.h +++ b/include/unicorn/unicorn_dynload.h @@ -26,8 +26,8 @@ // Zak Escano - November 2015 // -#ifndef _UNICORN_DYNLOAD_H_ -#define _UNICORN_DYNLOAD_H_ +#ifndef UNICORN_DYNLOAD_H +#define UNICORN_DYNLOAD_H // Undefine shared here so that functions aren't defined as: "__declspec(dllexport)" #ifdef UNICORN_SHARED @@ -63,5 +63,5 @@ bool uc_dyn_free(void); } #endif -#endif // _UNICORN_DYNLOAD_H_ +#endif // UNICORN_DYNLOAD_H