File: myrandom.c

package info (click to toggle)
sprng 2.0a-8
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 3,080 kB
  • ctags: 2,062
  • sloc: ansic: 30,350; fortran: 1,618; makefile: 573; cpp: 58; sh: 5
file content (7 lines) | stat: -rw-r--r-- 135 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
#include <stdio.h>
#include <stdlib.h>

double myrandom_()		/* remove _ before C compilation */
{
  return (double) rand()/RAND_MAX;
}