summaryrefslogtreecommitdiff
path: root/net/irrtoolset-nox11/patches/patch-ab
blob: 4ee0630b5fa7d05c3a045e5523f25291e4fb5695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
$NetBSD: patch-ab,v 1.1.1.1 2005/02/28 12:37:29 spz Exp $

--- src/Core/gnu/ACG.h.orig	2002-03-27 12:32:59.000000000 +0100
+++ src/Core/gnu/ACG.h
@@ -42,26 +42,26 @@ Foundation, 59 Temple Place - Suite 330,
 
 class ACG : public RNG {
 
-    _G_uint32_t initialSeed;	// used to reset generator
+    uint32_t initialSeed;	// used to reset generator
     int initialTableEntry;
 
-    _G_uint32_t *state;
-    _G_uint32_t *auxState;
+    uint32_t *state;
+    uint32_t *auxState;
     short stateSize;
     short auxSize;
-    _G_uint32_t lcgRecurr;
+    uint32_t lcgRecurr;
     short j;
     short k;
 
 protected:
 
 public:
-    ACG(_G_uint32_t seed = 0, int size = 55);
+    ACG(uint32_t seed = 0, int size = 55);
     virtual ~ACG();
     //
     // Return a long-words word of random bits
     //
-    virtual _G_uint32_t asLong();
+    virtual uint32_t asLong();
     virtual void reset();
 };