17 lines
201 B
C
17 lines
201 B
C
/* $Id$ */
|
|
|
|
#ifndef CALLSTAT_H
|
|
#define CALLSTAT_H
|
|
|
|
|
|
typedef struct _callstat {
|
|
int trytime;
|
|
int tryno;
|
|
int trystat;
|
|
} callstat;
|
|
|
|
callstat *getstatus(faddr*);
|
|
void putstatus(faddr*,int,int);
|
|
|
|
#endif
|