Fix warning crc32.c on function declaration without a prototype. (#11742)

This commit is contained in:
tekimen 2023-07-19 17:46:30 +09:00 committed by GitHub
parent dff4e40da2
commit 451cbbb6fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,7 @@ static unsigned long getauxval(unsigned long key) {
}
# endif
static inline int has_crc32_insn() {
static inline int has_crc32_insn(void) {
/* Only go through the runtime detection once. */
static int res = -1;
if (res != -1)