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:
parent
c5f3770d99
commit
ff4c29f42c
1 changed files with 4 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue