summaryrefslogtreecommitdiffstats
path: root/iptables.c
diff options
context:
space:
mode:
Diffstat (limited to 'iptables.c')
-rw-r--r--iptables.c25
1 files changed, 1 insertions, 24 deletions
diff --git a/iptables.c b/iptables.c
index 83b0c820..166016e3 100644
--- a/iptables.c
+++ b/iptables.c
@@ -37,6 +37,7 @@
#include <limits.h>
#include <unistd.h>
#include <iptables.h>
+#include <xtables.h>
#include <fcntl.h>
#include <sys/wait.h>
#include <sys/utsname.h>
@@ -579,30 +580,6 @@ check_inverse(const char option[], int *invert, int *optind, int argc)
return FALSE;
}
-static void *
-fw_calloc(size_t count, size_t size)
-{
- void *p;
-
- if ((p = calloc(count, size)) == NULL) {
- perror("iptables: calloc failed");
- exit(1);
- }
- return p;
-}
-
-static void *
-fw_malloc(size_t size)
-{
- void *p;
-
- if ((p = malloc(size)) == NULL) {
- perror("iptables: malloc failed");
- exit(1);
- }
- return p;
-}
-
static struct in_addr *
host_to_addr(const char *name, unsigned int *naddr)
{