Skip to content

Commit bf254c7

Browse files
r-barneswestes
authored andcommitted
Match malloc signature to its use
1 parent 8a59eda commit bf254c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/malloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include <sys/types.h>
55

6-
void *malloc ();
6+
void *malloc (size_t n);
77

88
/* Allocate an N-byte block of memory from the heap.
99
If N is zero, allocate a 1-byte block. */

0 commit comments

Comments
 (0)