]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netat/at_ddp_brt.h
xnu-1456.1.26.tar.gz
[apple/xnu.git] / bsd / netat / at_ddp_brt.h
index d614a8967216ba914d8aae8f8c6d4cf737c1d317..781311a8cd89182e3ac8d0b3b01c648216685e40 100644 (file)
@@ -59,7 +59,7 @@ typedef struct {
 #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)                        \
@@ -72,7 +72,7 @@ typedef struct {
        }
 
 #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)                 \