]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/bsearch.3
dlopen.3: tfix
[thirdparty/man-pages.git] / man3 / bsearch.3
index 1124e421b54b7faae7b8a22fd1963d7222c2b3df..b10a4dda2e89d129eaebf984b886cbb637aa0f71 100644 (file)
@@ -28,7 +28,7 @@
 .\"     386BSD man pages
 .\" Modified Mon Mar 29 22:41:16 1993, David Metcalfe
 .\" Modified Sat Jul 24 21:35:16 1993, Rik Faith (faith@cs.unc.edu)
-.TH BSEARCH 3  2015-08-08 "" "Linux Programmer's Manual"
+.TH BSEARCH 3  2017-09-15 "" "Linux Programmer's Manual"
 .SH NAME
 bsearch \- binary search of a sorted array
 .SH SYNOPSIS
@@ -86,7 +86,7 @@ T{
 .BR bsearch ()
 T}     Thread safety   MT-Safe
 .TE
-
+.sp 1
 .SH CONFORMING TO
 POSIX.1-2001, POSIX.1-2008, C89, C99, SVr4, 4.3BSD.
 .SH EXAMPLE
@@ -94,8 +94,8 @@ The example below first sorts an array of structures using
 .BR qsort (3),
 then retrieves desired elements using
 .BR bsearch ().
-.sp
-.nf
+.PP
+.EX
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -137,7 +137,7 @@ main(int argc, char **argv)
     }
     exit(EXIT_SUCCESS);
 }
-.fi
+.EE
 .\" this example referred to in qsort.3
 .SH SEE ALSO
 .BR hsearch (3),