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_'. --- include/freetype/ftlist.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/freetype/ftlist.h') diff --git a/include/freetype/ftlist.h b/include/freetype/ftlist.h index 12b48c78f..896f0dc94 100644 --- a/include/freetype/ftlist.h +++ b/include/freetype/ftlist.h @@ -24,8 +24,8 @@ /*************************************************************************/ -#ifndef __FTLIST_H__ -#define __FTLIST_H__ +#ifndef FTLIST_H_ +#define FTLIST_H_ #include @@ -270,7 +270,7 @@ FT_BEGIN_HEADER FT_END_HEADER -#endif /* __FTLIST_H__ */ +#endif /* FTLIST_H_ */ /* END */ -- cgit v1.2.1