summaryrefslogtreecommitdiff
path: root/src/lib/openjpip/byte_manager.h
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2023-12-08 15:55:00 +0100
committerGitHub <noreply@github.com>2023-12-08 15:55:00 +0100
commit2c8c5025ce082df7bb751bc4f7552f3bb923964f (patch)
tree5ad72e999a4b3b814eb46c2a84b04086e8f192cc /src/lib/openjpip/byte_manager.h
parent65282a0c2fe32668baef03c347ee8d289e2cb647 (diff)
parentc4b3a91ede1d0301f7f5f50287c0bda35aa7ca7e (diff)
Merge pull request #1484 from mayeut/mandatory-inttypes-stdint
Require `stdint.h` & `inttypes.h`
Diffstat (limited to 'src/lib/openjpip/byte_manager.h')
-rw-r--r--src/lib/openjpip/byte_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/openjpip/byte_manager.h b/src/lib/openjpip/byte_manager.h
index 57a7d501..02c806e0 100644
--- a/src/lib/openjpip/byte_manager.h
+++ b/src/lib/openjpip/byte_manager.h
@@ -32,8 +32,8 @@
#define BYTE_MANAGER_H_
#include <stddef.h>
+#include <stdint.h>
#include "openjpeg.h"
-#include "opj_stdint.h"
typedef uint8_t Byte_t;
typedef uint16_t Byte2_t;
typedef uint32_t Byte4_t;