comparison src/sysdep.c @ 10356:7e76290ef3f7

Delete obsolete comment.
author Karl Heuer <kwzh@gnu.org>
date Fri, 06 Jan 1995 23:23:38 +0000
parents 2a0a17f1043e
children 0028c532b70b
comparison
equal deleted inserted replaced
10355:e27c01c37cb9 10356:7e76290ef3f7
2699 #endif /* not BSTRING */ 2699 #endif /* not BSTRING */
2700 2700
2701 #ifndef HAVE_RANDOM 2701 #ifndef HAVE_RANDOM
2702 #ifndef random 2702 #ifndef random
2703 2703
2704 /*
2705 * The BSD random returns numbers in the range of
2706 * 0 to 2e31 - 1. The USG rand returns numbers in the
2707 * range of 0 to 2e15 - 1. This is probably not significant
2708 * in this usage.
2709 */
2710
2711 long 2704 long
2712 random () 2705 random ()
2713 { 2706 {
2714 #ifdef HAVE_LRAND48 2707 #ifdef HAVE_LRAND48
2715 return lrand48 (); 2708 return lrand48 ();