source: trunk/minix/lib/sysutil/report.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 546 bytes
Line 
1#include "sysutil.h"
2
3/*===========================================================================*
4 * report *
5 *===========================================================================*/
6PUBLIC void report(who, mess, num)
7char *who; /* server identification */
8char *mess; /* message format to print */
9int num; /* number to go with the message */
10{
11/* Display a message for a server. */
12
13 if (num != NO_NUM) {
14 printf("%s: %s %d\n", who, mess, num);
15 } else {
16 printf("%s: %s\n", who, mess);
17 }
18}
19
20
Note: See TracBrowser for help on using the repository browser.