3 /*===========================================================================*
5 *===========================================================================*/
6 PUBLIC
void report(who
, mess
, num
)
7 char *who
; /* server identification */
8 char *mess
; /* message format to print */
9 int num
; /* number to go with the message */
11 /* Display a message for a server. */
14 printf("%s: %s %d\n", who
, mess
, num
);
16 printf("%s: %s\n", who
, mess
);