summaryrefslogtreecommitdiffstats
path: root/xtables.c
diff options
context:
space:
mode:
authorYasuyuki KOZAKAI <yasuyuki@netfilter.org>2007-07-24 05:45:33 +0000
committerYasuyuki KOZAKAI <yasuyuki@netfilter.org>2007-07-24 05:45:33 +0000
commit3dfa4488b032fc32aaf2470f48ac1fc3a534794f (patch)
tree52317cc3cc5562b3784b1a18e3d3e06ea09c1708 /xtables.c
parent5208806f2708f761e97e62550561e3164b541770 (diff)
Moves common fw_malloc() and fw_calloc() to xtables.c
Diffstat (limited to 'xtables.c')
-rw-r--r--xtables.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/xtables.c b/xtables.c
index cc4d2184..667656a0 100644
--- a/xtables.c
+++ b/xtables.c
@@ -16,4 +16,34 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+
+#include <errno.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+#include <iptables_common.h>
#include <xtables.h>
+
+void *fw_calloc(size_t count, size_t size)
+{
+ void *p;
+
+ if ((p = calloc(count, size)) == NULL) {
+ perror("ip[6]tables: calloc failed");
+ exit(1);
+ }
+
+ return p;
+}
+
+void *fw_malloc(size_t size)
+{
+ void *p;
+
+ if ((p = malloc(size)) == NULL) {
+ perror("ip[6]tables: malloc failed");
+ exit(1);
+ }
+
+ return p;
+}