1: /*
2: * Copyright (c) 1986 Regents of the University of California.
3: * All rights reserved. The Berkeley software License Agreement
4: * specifies the terms and conditions for redistribution.
5: *
6: * @(#)ivec.h 1.2 (2.11BSD Berkeley) 12/30/92
7: */
8:
9: struct vec_s {
10: int v_func;
11: int v_br;
12: } ivec;
13:
14: #define IVSIZE (sizeof ivec)
15:
16: /*
17: * increased from 100 to 128 to allow for vectors to be allocated
18: * backwards from 01000 (512) via calls to 'nextiv'
19: */
20: #define NVECTOR 128 /* max. number of vectors we can set */
Defined variables
ivec
defined in line
12; used 1 times
Defined struct's
vec_s
defined in line
9;
never used
Defined macros
Usage of this include