summaryrefslogtreecommitdiffstats
path: root/include/rand.h
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2020-06-13 12:29:52 +0200
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2020-06-14 21:07:20 +0200
commitc7ff87e0ae3e619b5718eafcdee433af0a46df8b (patch)
treecc1cbd0e42ae924ffeeb4ba2750cc038d8622a94 /include/rand.h
parent9d886fd6a0888f121cd280d11434812a386045a2 (diff)
downloadu-boot-c7ff87e0ae3e619b5718eafcdee433af0a46df8b.tar.gz
u-boot-c7ff87e0ae3e619b5718eafcdee433af0a46df8b.tar.xz
u-boot-c7ff87e0ae3e619b5718eafcdee433af0a46df8b.zip
doc: random number generation
Add random number generation APIs to the HTML documentation. Fix style issues. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/rand.h')
-rw-r--r--include/rand.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rand.h b/include/rand.h
index c9d15f50a1..4c54fbbd10 100644
--- a/include/rand.h
+++ b/include/rand.h
@@ -22,7 +22,7 @@ void srand(unsigned int seed);
/**
* rand() - Get a 32-bit pseudo-random number
*
- * @returns next random number in the sequence
+ * Return: next random number in the sequence
*/
unsigned int rand(void);
@@ -32,8 +32,8 @@ unsigned int rand(void);
* This version of the function allows multiple sequences to be used at the
* same time, since it requires the caller to store the seed value.
*
- * @seed value to use, updated on exit
- * @returns next random number in the sequence
+ * @seedp: seed value to use, updated on exit
+ * Return: next random number in the sequence
*/
unsigned int rand_r(unsigned int *seedp);