8 lines
232 B
C
8 lines
232 B
C
|
/* Global variables. */
|
||
|
|
||
|
/* The parameters of the call are kept here. */
|
||
|
extern int who; /* caller's proc number */
|
||
|
extern int callnr; /* system call number */
|
||
|
extern int dont_reply; /* normally 0; set to 1 to inhibit reply */
|
||
|
|