From 37412ff9f42212bcf4dd29d9762f3c35b5735768 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Tue, 12 Jan 2016 21:37:13 +0100 Subject: Don't use macro names that contain `__' [1/2]. Such macro names are reserved for both C and C++. */*: Replace macros of the form `__XXX_H__' with `XXX_H_'. --- devel/ftoption.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'devel/ftoption.h') diff --git a/devel/ftoption.h b/devel/ftoption.h index f68b3adec..b440e01ed 100644 --- a/devel/ftoption.h +++ b/devel/ftoption.h @@ -16,8 +16,8 @@ /***************************************************************************/ -#ifndef __FTOPTION_H__ -#define __FTOPTION_H__ +#ifndef FTOPTION_H_ +#define FTOPTION_H_ #include @@ -898,7 +898,7 @@ FT_BEGIN_HEADER FT_END_HEADER -#endif /* __FTOPTION_H__ */ +#endif /* FTOPTION_H_ */ /* END */ -- cgit v1.2.1