pkgsrc/net/irrtoolset-nox11/patches/patch-ab
spz 9752c99a85 IRRToolSet is a suite of policy analysis tools to operate with
routing policies in RPSL [RFC 2622] format, registered in an
Internet Routing Registry(IRR). The main goal of the project is
to make routing information more convenient and useful for
network engineers, by providing tools for automated router configuration,
routing policies analysis, and maintenance.
2005-02-28 12:37:29 +00:00

37 lines
902 B
Text

$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();
};