1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -08:00

Don't prototype srandom; it takes an unsigned argument

on some systems, and an unsigned long on others, like FreeBSD 4.1.
This commit is contained in:
Gerd Moellmann 2001-01-05 11:26:08 +00:00
parent c5f3770d99
commit ff4c29f42c

View file

@ -31,8 +31,12 @@ Boston, MA 02111-1307, USA. */
declared, e.g. without __USE_XOPEN_EXTENDED with glibc 2. */
#ifdef HAVE_RANDOM
extern long int random P_ ((void));
#if 0 /* Don't prototype srandom; it takes an unsigned argument on
some systems, and an unsigned long on others, like FreeBSD
4.1. */
extern void srandom P_ ((unsigned int));
#endif
#endif
#include "blockinput.h"
#undef NULL