mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
Fix warning crc32.c on function declaration without a prototype. (#11742)
This commit is contained in:
parent
dff4e40da2
commit
451cbbb6fb
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ static unsigned long getauxval(unsigned long key) {
|
||||||
}
|
}
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
static inline int has_crc32_insn() {
|
static inline int has_crc32_insn(void) {
|
||||||
/* Only go through the runtime detection once. */
|
/* Only go through the runtime detection once. */
|
||||||
static int res = -1;
|
static int res = -1;
|
||||||
if (res != -1)
|
if (res != -1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue