mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Fix warning crc32.c on function declaration without a prototype. (#11742)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user