ack/lang/cem/lint/lpass2/inpdef.str
1988-05-30 17:17:16 +00:00

23 lines
398 B
Plaintext

#define NAMESIZE 100
#define FNAMESIZE 100
#define ARGTPSSIZE 2000
#define TYPESIZE 1000
struct inpdef {
struct inpdef *next;
int id_class;
char id_name[NAMESIZE];
char id_file[FNAMESIZE];
unsigned int id_line;
int id_nrargs;
char id_argtps[ARGTPSSIZE];
int id_returns;
char id_type[TYPESIZE];
int id_called;
int id_used;
int id_ignored;
int id_voided;
};
/* ALLOCDEF "inpdef" 10 */