: #Stub CreditRoutine 0;
: then I define CreditRoutine() later, it complains about it being
: multiply defined?? What does the number mean after the routine name?
I think you have to put the #stub directive at the end of the file. It
sees that CreditRoutine is not defined, and defines it. When you define
it again, it complains about multiple definition. The number is how many
arguments the function takes.