X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Frand.h;h=4c54fbbd104232c3c6fdc3b602bccafb1e54881e;hb=d2e5250be49fce4653689c41a5dc7e2d7e7ecf33;hp=c9d15f50a13c037e0e361dd601b84c5d56cba821;hpb=a7bbaf8c1345906affb8dd6faa6a3aaedac3f451;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/rand.h b/include/rand.h index c9d15f5..4c54fbb 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);