]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/drand48_r.3
fanotify_init.2, fanotify.7: Document FAN_REPORT_TID
[thirdparty/man-pages.git] / man3 / drand48_r.3
index e438b750ab036ce85758b128ac0a5d038985238c..de242331c87cc130776ddeba6fdb7ea5757f224c 100644 (file)
@@ -24,7 +24,7 @@
 .\"
 .\" Created 2004-10-31. Text taken from a page by Walter Harms, 2003-09-08
 .\"
-.TH DRAND48_R 3 2015-03-02 "GNU" "Linux Programmer's Manual"
+.TH DRAND48_R 3 2017-09-15 "GNU" "Linux Programmer's Manual"
 .SH NAME
 drand48_r, erand48_r, lrand48_r, nrand48_r, mrand48_r, jrand48_r,
 srand48_r, seed48_r, lcong48_r
@@ -32,41 +32,36 @@ srand48_r, seed48_r, lcong48_r
 .SH SYNOPSIS
 .nf
 .B #include <stdlib.h>
-.sp
+.PP
 .BI "int drand48_r(struct drand48_data *" buffer ", double *" result );
-.sp
+.PP
 .BI "int erand48_r(unsigned short " xsubi [3] ","
-.br
 .BI "              struct drand48_data *"buffer ", double *" result ");"
-.sp
+.PP
 .BI "int lrand48_r(struct drand48_data *" buffer ", long int *" result );
-.sp
+.PP
 .BI "int nrand48_r(unsigned short int " xsubi[3] ","
-.br
 .BI "              struct drand48_data *"buffer ", long int *" result ");"
-.sp
+.PP
 .BI "int mrand48_r(struct drand48_data *" buffer ",long int *" result ");"
-.sp
+.PP
 .BI "int jrand48_r(unsigned short int " xsubi[3] ","
-.br
 .BI "              struct drand48_data *" buffer ", long int *" result ");"
-.sp
+.PP
 .BI "int srand48_r(long int " seedval ", struct drand48_data *" buffer ");"
-.sp
+.PP
 .BI "int seed48_r(unsigned short int " seed16v[3] ","
-.br
 .BI "             struct drand48_data *" buffer ");"
-.sp
+.PP
 .BI "int lcong48_r(unsigned short int " param[7] ","
-.br
 .BI "              struct drand48_data *" buffer ");"
 .fi
-.sp
+.PP
 .in -4n
 Feature Test Macro Requirements for glibc (see
 .BR feature_test_macros (7)):
 .in
-.sp
+.PP
 .ad l
 All functions shown above:
 .\" .BR drand48_r (),
@@ -87,7 +82,7 @@ These functions are the reentrant analogs of the functions described in
 Instead of modifying the global random generator state, they use
 the supplied data
 .IR buffer .
-
+.PP
 Before the first use, this struct must be initialized, for example,
 by filling it with zeros, or by calling one of the functions
 .BR srand48_r (),