qsort.3: EXAMPLE: remove unnecessary "#include <stdlib.h>"

Reported-by: Christian Siebert <christian.siebert@s2000.tu-chemnitz.de>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2009-02-01 00:30:14 +13:00
parent 6255c227d7
commit 7bbac16345
1 changed files with 1 additions and 2 deletions

View File

@ -31,7 +31,7 @@
.\"
.\" FIXME glibc 2.8 added qsort_r(), which needs to be documented.
.\"
.TH QSORT 3 2003-11-15 "" "Linux Programmer's Manual"
.TH QSORT 3 2009-02-01 "" "Linux Programmer's Manual"
.SH NAME
qsort \- sorts an array
.SH SYNOPSIS
@ -84,7 +84,6 @@ which sorts the strings given in its command-line arguments:
.nf
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <assert.h>