diff options
author | Steve Kondik <shade@chemlab.org> | 2010-03-19 15:55:41 -0400 |
---|---|---|
committer | Steve Kondik <shade@chemlab.org> | 2010-07-13 21:18:07 -0400 |
commit | d287acf7d7347b5eea6918884de72cb249389557 (patch) | |
tree | d7a6e20e392e45cb658b2cc26878ce63f492c658 /include/iptables | |
parent | 278d26e1424418cff04742f4c5a841da05a0ab08 (diff) | |
download | android_external_iptables-d287acf7d7347b5eea6918884de72cb249389557.tar.gz android_external_iptables-d287acf7d7347b5eea6918884de72cb249389557.tar.bz2 android_external_iptables-d287acf7d7347b5eea6918884de72cb249389557.zip |
Update iptables to 1.4.7.master
Change-Id: I6dcb783aee47f54eaaf42ecc2a7f47a287cdabf3
Diffstat (limited to 'include/iptables')
-rw-r--r-- | include/iptables/internal.h | 13 | ||||
-rw-r--r-- | include/iptables/internal.h.in | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/include/iptables/internal.h b/include/iptables/internal.h new file mode 100644 index 0000000..0d80cf2 --- /dev/null +++ b/include/iptables/internal.h @@ -0,0 +1,13 @@ +#ifndef IPTABLES_INTERNAL_H +#define IPTABLES_INTERNAL_H 1 + +#define IPTABLES_VERSION "1.4.7" + +/** + * Program's own name and version. + */ +extern const char *program_name, *program_version; + +extern int line; + +#endif /* IPTABLES_INTERNAL_H */ diff --git a/include/iptables/internal.h.in b/include/iptables/internal.h.in new file mode 100644 index 0000000..8568e58 --- /dev/null +++ b/include/iptables/internal.h.in @@ -0,0 +1,13 @@ +#ifndef IPTABLES_INTERNAL_H +#define IPTABLES_INTERNAL_H 1 + +#define IPTABLES_VERSION "@PACKAGE_VERSION@" + +/** + * Program's own name and version. + */ +extern const char *program_name, *program_version; + +extern int line; + +#endif /* IPTABLES_INTERNAL_H */ |