From 78c1a985ecac675c99f8d2b935878023fa063d66 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 11 Aug 2017 01:29:38 -0400 Subject: [PATCH] Made physfs_lzmasdk.h's include-once blockers match other files' formatting. --- src/physfs_lzmasdk.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/physfs_lzmasdk.h b/src/physfs_lzmasdk.h index 1c9c570c..c86972e5 100644 --- a/src/physfs_lzmasdk.h +++ b/src/physfs_lzmasdk.h @@ -1,10 +1,12 @@ +#ifndef _INCLUDE_PHYSFS_LZMASDK_H_ +#define _INCLUDE_PHYSFS_LZMASDK_H_ + /* This is just a bunch of the LZMA SDK mushed together into one header. This code is all public domain, and mostly (if not entirely) written by Igor Pavlov. http://www.7-zip.org/sdk.html --ryan. */ -#ifndef _INCL_PHYSFS_LZMASDK_H_ -#define _INCL_PHYSFS_LZMASDK_H_ + /* 7zTypes.h -- Basic types 2013-11-12 : Igor Pavlov : Public domain */ @@ -6020,4 +6022,7 @@ static SRes Lzma2Dec_DecodeToDic(CLzma2Dec *p, SizeT dicLimit, return SZ_OK; } -#endif +#endif /* _INCLUDE_PHYSFS_LZMASDK_H_ */ + +/* end of physfs_lzmasdk.h ... */ +