~ubuntu-branches/ubuntu/natty/dealer/natty

« back to all changes in this revision

Viewing changes to Random/rand.c

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2005-09-07 23:32:20 UTC
  • Revision ID: james.westby@ubuntu.com-20050907233220-e7bsghnrwg1ncye4
Tags: upstream-0.20040530
ImportĀ upstreamĀ versionĀ 0.20040530

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  This code has been introduced by Bruce Moore <Bruce.Moore@akamail.com>
 
3
*/
 
4
 
 
5
/* Copyright (C) 1991 Free Software Foundation, Inc.
 
6
This file is part of the GNU C Library.
 
7
 
 
8
The GNU C Library is free software; you can redistribute it and/or
 
9
modify it under the terms of the GNU Library General Public License as
 
10
published by the Free Software Foundation; either version 2 of the
 
11
License, or (at your option) any later version.
 
12
 
 
13
The GNU C Library is distributed in the hope that it will be useful,
 
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
Library General Public License for more details.
 
17
 
 
18
You should have received a copy of the GNU Library General Public
 
19
License along with the GNU C Library; see the file COPYING.LIB.  If
 
20
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
 
21
Cambridge, MA 02139, USA.  */
 
22
 
 
23
#include "ansidecl.h"
 
24
/*
 
25
#include <stdlib.h>
 
26
*/
 
27
 
 
28
#undef  rand
 
29
#undef __random
 
30
 
 
31
long int DEFUN_VOID(__random);
 
32
 
 
33
 
 
34
/* Return a random integer between 0 and RAND_MAX.  */
 
35
/* int
 
36
DEFUN_VOID(gnurand)
 
37
{
 
38
  return (int) __random();
 
39
}
 
40
*/
 
41
 
 
42
 
 
43
int gnurand () {
 
44
   return (int) __random(); }
 
45
 
 
46