Match malloc signature to its use

This commit is contained in:
Richard Barnes 2024-10-02 10:35:09 -07:00 committed by Will Estes
parent 8a59edae27
commit bf254c75b1

View File

@ -3,7 +3,7 @@
#include <sys/types.h>
void *malloc ();
void *malloc (size_t n);
/* Allocate an N-byte block of memory from the heap.
If N is zero, allocate a 1-byte block. */