diff options
author | midipix <writeonce@midipix.org> | 2019-02-22 22:53:39 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-02-22 23:05:58 -0500 |
commit | 766a639b263460187852043816a4ed06920e624b (patch) | |
tree | 57e199aec98c27a9fe1687bae18a863709831417 /src/hash | |
parent | 919f4260802aee4b33c8b3cf4413ce445a6d0c38 (diff) | |
download | ntapi-766a639b263460187852043816a4ed06920e624b.tar.bz2 ntapi-766a639b263460187852043816a4ed06920e624b.tar.xz |
internals: explicitly attribute protected visibility to all interfaces.
Diffstat (limited to 'src/hash')
-rw-r--r-- | src/hash/ntapi_tt_crc32.c | 1 | ||||
-rw-r--r-- | src/hash/ntapi_tt_crc64.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/hash/ntapi_tt_crc32.c b/src/hash/ntapi_tt_crc32.c index 0a3d459..2e0630a 100644 --- a/src/hash/ntapi_tt_crc32.c +++ b/src/hash/ntapi_tt_crc32.c @@ -6,6 +6,7 @@ #include <psxtypes/psxtypes.h> #include <ntapi/nt_crc32.h> +#include "ntapi_impl.h" static const uint32_t crc32_table[256] = NTAPI_CRC32_TABLE; diff --git a/src/hash/ntapi_tt_crc64.c b/src/hash/ntapi_tt_crc64.c index fd76ec5..8fa7f60 100644 --- a/src/hash/ntapi_tt_crc64.c +++ b/src/hash/ntapi_tt_crc64.c @@ -6,6 +6,7 @@ #include <psxtypes/psxtypes.h> #include <ntapi/nt_crc64.h> +#include "ntapi_impl.h" static const uint64_t crc64_table[256] = NTAPI_CRC64_TABLE; |