From: Jan Engelhardt Date: Tue, 10 Feb 2009 09:51:25 +0000 (+0100) Subject: src: consolidate duplicate code in iptables/internal.h X-Git-Tag: v1.4.3~39^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47a6fd9ec9891a8040eb8fd6db3c5012c1056061;p=thirdparty%2Fiptables.git src: consolidate duplicate code in iptables/internal.h Signed-off-by: Jan Engelhardt --- diff --git a/include/ip6tables.h b/include/ip6tables.h index 98f2da5c..86587e6f 100644 --- a/include/ip6tables.h +++ b/include/ip6tables.h @@ -6,8 +6,6 @@ #include #include -extern int line; - /* Your shared library should call one of these. */ extern int do_command6(int argc, char *argv[], char **table, struct ip6tc_handle **handle); diff --git a/include/iptables.h b/include/iptables.h index d309059e..f0aa3455 100644 --- a/include/iptables.h +++ b/include/iptables.h @@ -6,8 +6,6 @@ #include #include -extern int line; - /* Your shared library should call one of these. */ extern int do_command(int argc, char *argv[], char **table, struct iptc_handle **handle); diff --git a/include/iptables/internal.h.in b/include/iptables/internal.h.in index 849e1722..8568e581 100644 --- a/include/iptables/internal.h.in +++ b/include/iptables/internal.h.in @@ -8,4 +8,6 @@ */ extern const char *program_name, *program_version; +extern int line; + #endif /* IPTABLES_INTERNAL_H */