about summary refs log tree commit diff
path: root/converter/other/jpeg2000/libjasper/jpc/jpc_math.h
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2019-09-28 19:28:25 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2019-09-28 19:28:25 +0000
commitb8b78b9917ede066d5e33c6a9f52cc72ec591a4f (patch)
treee601fbc943e34995e65704dbfe1ea5bcb9c55755 /converter/other/jpeg2000/libjasper/jpc/jpc_math.h
parent3243533668052a9cf293357821ae4bd282444655 (diff)
downloadnetpbm-mirror-b8b78b9917ede066d5e33c6a9f52cc72ec591a4f.tar.gz
netpbm-mirror-b8b78b9917ede066d5e33c6a9f52cc72ec591a4f.tar.xz
netpbm-mirror-b8b78b9917ede066d5e33c6a9f52cc72ec591a4f.zip
Release 10.86.06
git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@3688 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/jpeg2000/libjasper/jpc/jpc_math.h')
-rw-r--r--converter/other/jpeg2000/libjasper/jpc/jpc_math.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/converter/other/jpeg2000/libjasper/jpc/jpc_math.h b/converter/other/jpeg2000/libjasper/jpc/jpc_math.h
index 77df0c62..cd24c6a6 100644
--- a/converter/other/jpeg2000/libjasper/jpc/jpc_math.h
+++ b/converter/other/jpeg2000/libjasper/jpc/jpc_math.h
@@ -115,7 +115,8 @@
 * Includes
 \******************************************************************************/
 
-#include	<assert.h>
+#include <assert.h>
+#include <stdint.h>
 
 /******************************************************************************\
 * Macros
@@ -146,10 +147,10 @@
 
 /* Calculate the bit position of the first leading one in a nonnegative
   integer. */
-int jpc_firstone(int x);
+int jpc_firstone(int_fast32_t x);
 
 /* Calculate the integer quantity floor(log2(x)), where x is a positive
   integer. */
-int jpc_floorlog2(int x);
+int jpc_floorlog2(int_fast32_t x);
 
 #endif