[โNote: The header <cstdlib> declares the functions described in this subclause. โโโend noteโ]
int rand();
void srand(unsigned int seed);
Remarks: The implementation may specify that particular library functions may call rand. It is implementation-defined whether the rand function may introduce data races ([res.on.data.races]). [โNote: The other random number generation facilities in this International Standard ([rand]) are often preferable to rand, because rand's underlying algorithm is unspecified. Use of rand therefore continues to be non-portable, with unpredictable and oft-questionable quality and performance. โโโend noteโ]
See also: ISO C 7.22.2