mirror of
https://git.kernel.org/pub/scm/network/iproute2/iproute2.git
synced 2024-11-15 05:55:11 +08:00
6054c1ebf7
For all files in iproute2 which do not have an obvious license identification, mark them with SPDK GPL-2 Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
15 lines
278 B
C
15 lines
278 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef IPTABLES_INTERNAL_H
|
|
#define IPTABLES_INTERNAL_H 1
|
|
|
|
#define IPTABLES_VERSION "1.6.0"
|
|
|
|
/**
|
|
* Program's own name and version.
|
|
*/
|
|
extern const char *program_name, *program_version;
|
|
|
|
extern int line;
|
|
|
|
#endif /* IPTABLES_INTERNAL_H */
|