Fix header guards.

This commit is contained in:
2021-10-13 03:30:02 +01:00
parent 134709f90f
commit ca65d12c7e
8 changed files with 40 additions and 10 deletions

View File

@@ -16,6 +16,9 @@
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef AARU_CHECKSUMS_NATIVE_CRC32_H
#define AARU_CHECKSUMS_NATIVE_CRC32_H
typedef struct
{
uint32_t crc;
@@ -277,4 +280,6 @@ AARU_EXPORT TARGET_ARMV8_WITH_CRC uint32_t AARU_CALL armv8_crc32_little(uint32_t
uint32_t len);
#endif
AARU_EXPORT TARGET_WITH_SIMD uint32_t AARU_CALL crc32_vmull(uint32_t previous_crc, const uint8_t* data, long len);
#endif
#endif
#endif // AARU_CHECKSUMS_NATIVE_CRC32_H