aboutsummaryrefslogtreecommitdiff
path: root/lib/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/common.h')
-rw-r--r--lib/common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/common.h b/lib/common.h
index 41bf343..e30bc2e 100644
--- a/lib/common.h
+++ b/lib/common.h
@@ -34,8 +34,8 @@
* Private utilities used by the library and sample/test code.
*/
-#ifndef __COMMON_H__
-#define __COMMON_H__
+#ifndef LIB_MUSER_COMMON_H
+#define LIB_MUSER_COMMON_H
#include <stdint.h>
@@ -55,6 +55,6 @@
#define ROUND_DOWN(x, a) ((x) & ~((a)-1))
#define ROUND_UP(x,a) ROUND_DOWN((x)+(a)-1, a)
-#endif /* __COMMON_H__ */
+#endif /* LIB_MUSER_COMMON_H */
/* ex: set tabstop=4 shiftwidth=4 softtabstop=4 expandtab: */