Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stdlib.h « machine « epiphany « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95b4063b08fbf5b7956d39a8f49558cd8692132e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
static __inline__ long int
random (void)
{
  extern int rand(void);

  return rand ();
}

static __inline__ void
srandom (unsigned int seed)
{
  void srand(unsigned int seed);

  srand (seed);
}