]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/net/pf_ruleset.c
xnu-7195.81.3.tar.gz
[apple/xnu.git] / bsd / net / pf_ruleset.c
index 4b3be609a4d953a63ea7054e714936cc4ca6cfba..b802c11bbdfcc0059a29d3120f961166f1e9d473 100644 (file)
@@ -83,9 +83,7 @@
 #include <net/if.h>
 #include <net/pfvar.h>
 
-#if INET6
 #include <netinet/ip6.h>
-#endif /* INET6 */
 
 
 #ifdef KERNEL
                printf(format, ##x)
 #define rs_malloc(x)            _MALLOC(x, M_TEMP, M_WAITOK)
 #define rs_free(x)              _FREE(x, M_TEMP)
-#define strrchr                 _strrchr
-
-static char *
-_strrchr(const char *c, int ch)
-{
-       char *p = (char *)(size_t)c, *save;
-
-       for (save = NULL;; ++p) {
-               if (*p == ch) {
-                       save = (char *)p;
-               }
-               if (*p == '\0') {
-                       return save;
-               }
-       }
-       /* NOTREACHED */
-}
 
 #else
 /* Userland equivalents so we can lend code to pfctl et al. */