* Do not declare random(), in case the prototype changes.

git-svn-id: svn://svn.zoy.org/elk/trunk@132 55e467fa-43c5-0310-a8a2-de718669efc6
This commit is contained in:
sam 2003-09-09 18:35:16 +00:00
parent 137cb525d9
commit ea7b42320d
1 changed files with 0 additions and 1 deletions

View File

@ -1134,7 +1134,6 @@ Object P_Max (int argc, Object *argv) {
Object P_Random () {
#ifdef HAVE_RANDOM
extern long int random();
return Make_Long (random ());
#else
return Make_Integer (rand ());