diff --git a/src/post_modules/Nettle/nettle.cmod b/src/post_modules/Nettle/nettle.cmod
index 6bbc399e5eecc3824849bb35dd855a552dd59afe..92296db1877b3386a93d63fdcf2835c8c379590f 100644
--- a/src/post_modules/Nettle/nettle.cmod
+++ b/src/post_modules/Nettle/nettle.cmod
@@ -1,5 +1,5 @@
 /* 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,6 +54,7 @@ PIKECLASS Yarrow
    *!   @[update]
    */
   PIKEFUN void create(void|int arg)
+    flags ID_STATIC;
   {
     INT32 num = 0;
 
@@ -814,7 +815,9 @@ PIKECLASS LFib
   /* @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);
   }