mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-02-14 08:13:12 -05:00
Merge pull request #1262 from markyang92/master
fix build with gcc-15 -Wbuiltin-declaration-mismatch error in compat/malloc.c
This commit is contained in:
commit
b738b354bd
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@
|
|||
#include <sys/types.h>
|
||||
|
||||
#ifndef USE_WINSOCK
|
||||
void *malloc ();
|
||||
void *malloc (size_t n);
|
||||
#else
|
||||
/* provide a prototype */
|
||||
void *malloc (size_t n);
|
||||
|
|
|
|||
Loading…
Reference in a new issue