diff --git a/src/module.c b/src/module.c
index f4a83224eea7623c31270c54582830417353b11b..bea4c113ce534e8b4124f1cc37c43792392e9826 100644
--- a/src/module.c
+++ b/src/module.c
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: module.c,v 1.54 2008/06/23 16:39:04 mast Exp $
+|| $Id: module.c,v 1.55 2008/06/29 17:56:36 nilsson Exp $
 */
 
 #include "global.h"
@@ -358,7 +358,7 @@ static void exit_builtin_modules(void)
   first_program=0;
   free_all_program_blocks();
   exit_multiset();
-#endif
+#endif /* DO_PIKE_CLEANUP */
 }
 
 typedef void (*modfun)(void);
@@ -463,14 +463,14 @@ void exit_modules(void)
 	  gc_fatal (o, 0, "Object missed in gc_destruct_everything mode"
 		    " (is on objects_to_destruct list).\n");
     }
-#endif
+#endif /* PIKE_DEBUG */
     gc_destruct_everything = 0;
     exit_cleanup_in_progress = 1; /* Warn about object creation from now on. */
   }
 
   /* Unload dynamic modules before static ones. */
   exit_dynamic_load();
-#endif
+#endif /* DO_PIKE_CLEANUP */
 
   for(e=NELEM(module_list)-1;e>=0;e--)
   {