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:
Yorgos Thessalonikefs 2025-04-02 11:49:49 +02:00 committed by GitHub
commit b738b354bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);