diff options
author | athenian200 <athenian200@outlook.com> | 2022-07-09 12:38:53 +0000 |
---|---|---|
committer | athenian200 <athenian200@outlook.com> | 2022-07-09 12:38:53 +0000 |
commit | 68bfe68581521ccb2363910fae18e06c12f6b573 (patch) | |
tree | 08c80bd82f4b36c2d96f2bfa18928edbee44ca57 | |
parent | 1fadb7fa2f6e5e8e5b5905dedf7597dba19dee3b (diff) | |
download | uxp-68bfe68581521ccb2363910fae18e06c12f6b573.tar.gz |
No Issue - Insert missing typedef for SunOS.
We definitely have uint64_t on SunOS. Someone probably just forgot to finish filling out the list...
-rw-r--r-- | media/libogg/include/ogg/os_types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/media/libogg/include/ogg/os_types.h b/media/libogg/include/ogg/os_types.h index a8d4600fb0..f67f0c0d98 100644 --- a/media/libogg/include/ogg/os_types.h +++ b/media/libogg/include/ogg/os_types.h @@ -108,6 +108,7 @@ extern ogg_free_function_type *ogg_free_func; typedef int32_t ogg_int32_t; typedef uint32_t ogg_uint32_t; typedef int64_t ogg_int64_t; + typedef uint64_t ogg_uint64_t; #elif defined(__HAIKU__) |