This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



RAND(3)                                 BSD Library Functions Manual                                 RAND(3)

NAME
     rand, rand_r, srand, sranddev -- bad random number generator

LIBRARY
     Standard C Library (libc, -lc)

SYNOPSIS
     #include <stdlib.h>

     int
     rand(void);

     int
     rand_r(unsigned *seed);

     void
     srand(unsigned seed);

     void
     sranddev(void);

DESCRIPTION
     These interfaces are obsoleted by random(3).

     The rand() function computes a sequence of pseudo-random integers in the range of 0 to RAND_MAX (as
     defined by the header file <stdlib.h>).

     The srand() function sets its argument seed as the seed for a new sequence of pseudo-random numbers to
     be returned by rand().  These sequences are repeatable by calling srand() with the same seed value.

     If no seed value is provided, the functions are automatically seeded with a value of 1.

     The sranddev() function initializes a seed, using the random(4) random number device which returns good
     random numbers, suitable for cryptographic use.

     The rand_r() function provides the same functionality as rand().  A pointer to the context value seed
     must be supplied by the caller.

SEE ALSO
     random(3), random(4)

STANDARDS
     The rand() and srand() functions conform to ISO/IEC 9899:1990 (``ISO C90'').

     The rand_r() function is as proposed in the POSIX.4a Draft #6 document.

BSD                                             May 25, 1999                                             BSD

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...