malloc.3: Reorder prototypes in SYNOPSIS

calloc() comes before realloc() in the other sections,
so should do in SYNOPSIS, too.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Seonghun Lim 2011-09-08 17:35:56 +02:00 committed by Michael Kerrisk
parent 01038ebae1
commit d9ec0c6aa9
1 changed files with 1 additions and 1 deletions

View File

@ -34,8 +34,8 @@ malloc, free, calloc, realloc \- Allocate and free dynamic memory
.sp
.BI "void *malloc(size_t " "size" );
.BI "void free(void " "*ptr" );
.BI "void *realloc(void " "*ptr" ", size_t " "size" );
.BI "void *calloc(size_t " "nmemb" ", size_t " "size" );
.BI "void *realloc(void " "*ptr" ", size_t " "size" );
.fi
.SH DESCRIPTION
.PP