- add reference to a variable, like in test7

This commit is contained in:
Bryce Denney 2002-10-16 01:32:52 +00:00
parent 19a62a4798
commit 3f57e5f278
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
void module_init ()
{
printf ("module1 init\n");
printf ("module1 init for main version %s\n", version_string);
register_module ("module1");
}

View File

@ -5,7 +5,7 @@ int n_operations = 0;
void module_init ()
{
printf ("module2 init\n");
printf ("module2 init for main version %s\n", version_string);
register_module ("module2");
}