#define BRT_HASH(a) ((a) % BRT_NB)
#define BRT_LOOK(brt, dst_net) { \
- register n; \
+ int n; \
brt = &at_ddp_brt[BRT_HASH(dst_net) * BRT_BSIZ]; \
for (n = 0 ; ; brt++) { \
if (brt->net == dst_net) \
}
#define NEW_BRT(brt, net) { \
- register n; \
+ int n; \
brt = &at_ddp_brt[BRT_HASH(net) * BRT_BSIZ]; \
for (n = 0 ; ; brt++) { \
if (brt->age_flag == BRT_EMPTY) \