pike.git/
src/
post_modules/
Nettle/
nettle.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2004-10-22
2004-10-22 22:42:10 by Martin Nilsson <mani@lysator.liu.se>
c72a033ade77b88ee636fd54ff3ba80db3c9d8c9 (
8
lines) (+
6
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Made all create static
Rev: src/post_modules/Nettle/nettle.cmod:1.39
1:
/* nettle.cmod -*- c -*- */
-
/* $Id: nettle.cmod,v 1.
38
2004/10/
07
22:
19
:
11
nilsson Exp $ */
+
/* $Id: nettle.cmod,v 1.
39
2004/10/
22
22:
42
:
10
nilsson Exp $ */
#include "global.h" #include "interpret.h"
54:
*! @[update] */ PIKEFUN void create(void|int arg)
+
flags ID_STATIC;
{ INT32 num = 0;
814:
/* @decl void create(int seed) * The Lfib generator must be seeded with a number. */
-
PIKEFUN void create(int seed) {
+
PIKEFUN void create(int seed)
+
flags ID_STATIC;
+
{
knuth_lfib_init(THIS->ctx, seed); }