From c45f6b379d98c3b32dfa7abda74434978aa94094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Wed, 13 Feb 2019 16:02:54 +0200 Subject: Remove leading double underscores from include guard defines A symbol starting with two leading underscores is reserved for the compiler/standard library implementation. Also remove the trailing two double underscores for consistency and symmetry. --- include/dav1d/dav1d.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/dav1d/dav1d.h') diff --git a/include/dav1d/dav1d.h b/include/dav1d/dav1d.h index 82f0a2c..af94804 100644 --- a/include/dav1d/dav1d.h +++ b/include/dav1d/dav1d.h @@ -25,8 +25,8 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __DAV1D_H__ -#define __DAV1D_H__ +#ifndef DAV1D_H +#define DAV1D_H #ifdef __cplusplus extern "C" { @@ -201,4 +201,4 @@ DAV1D_API void dav1d_flush(Dav1dContext *c); } # endif -#endif /* __DAV1D_H__ */ +#endif /* DAV1D_H */ -- cgit v1.2.3