summaryrefslogtreecommitdiff
path: root/src/lib/openjp2/opj_intmath.h
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2017-07-30 19:46:52 +0200
committerEven Rouault <even.rouault@spatialys.com>2017-07-30 19:46:52 +0200
commit13cde9fa37249628af6b6f10601b733f87a025f4 (patch)
tree0dbef03b824ad07b02db86c0e0adbeb6a7a94616 /src/lib/openjp2/opj_intmath.h
parent9a6d41d22b1a4f17a376d2f6f208c52c58b8e4b3 (diff)
src/lib/openjp2/*.h: use OPJ_ prefix for inclusion guards instead of reserved __ (#587)
Diffstat (limited to 'src/lib/openjp2/opj_intmath.h')
-rw-r--r--src/lib/openjp2/opj_intmath.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/openjp2/opj_intmath.h b/src/lib/openjp2/opj_intmath.h
index 64c87ed9..cf97c15b 100644
--- a/src/lib/openjp2/opj_intmath.h
+++ b/src/lib/openjp2/opj_intmath.h
@@ -34,8 +34,8 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef __INT_H
-#define __INT_H
+#ifndef OPJ_INTMATH_H
+#define OPJ_INTMATH_H
/**
@file opj_intmath.h
@brief Implementation of operations on integers (INT)
@@ -240,4 +240,4 @@ static INLINE OPJ_INT32 opj_int_fix_mul_t1(OPJ_INT32 a, OPJ_INT32 b)
/*@}*/
-#endif
+#endif /* OPJ_INTMATH_H */