% cat a.cpp
#include <cstdlib>
#include <ctime>

int main(void)
{
   srandom(time(NULL));
   return 0;
}

% g++ -W -Wall a.cpp
% g++ -W -Wall -ansi a.cpp
a.cpp: In function `int main()':
a.cpp:6: error: `srandom' undeclared (first use this function)
a.cpp:6: error: (Each undeclared identifier is reported only once for each
function it appears in.)

_| ̄|○ なんでやねん