From 08ce54211ce4b8d6092321ca1b28773a680ddc45 Mon Sep 17 00:00:00 2001 From: Jannis Hoffmann Date: Tue, 9 Jul 2024 16:05:46 +0200 Subject: Added missing function prototype signatures. Corrected socket_broadcast name to socket_broadcast4 in socket_if.h. Added const to fmt_str. --- include/alloc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/alloc.h') diff --git a/include/alloc.h b/include/alloc.h index 4fec2c2..ecfe02a 100644 --- a/include/alloc.h +++ b/include/alloc.h @@ -1,9 +1,9 @@ #ifndef ALLOC_H #define ALLOC_H -extern /*@null@*/ /*@out@*/ char *alloc(); -extern void alloc_free(); -extern int alloc_re(); +extern void *alloc(unsigned int); +extern void alloc_free(void *); +extern int alloc_re(void *, unsigned int, unsigned int); /* use these names in the future */ #define qfree alloc_free -- cgit v1.2.3