mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-05 10:48:03 -04:00
14 lines
307 B
Plaintext
14 lines
307 B
Plaintext
$NetBSD: patch-aa,v 1.3 2010/08/15 07:35:56 obache Exp $
|
|
|
|
--- measure.c.orig 2008-09-07 11:02:28.000000000 +0000
|
|
+++ measure.c
|
|
@@ -40,7 +40,7 @@
|
|
double
|
|
quantum_frand()
|
|
{
|
|
- return (double) rand() / RAND_MAX;
|
|
+ return (double) random() / RAND_MAX;
|
|
}
|
|
|
|
/* Measure the contents of a quantum register */
|