1#include <string.h>
2#include "include/ebtables_u.h"
3
4static struct ebt_u_replace replace;
5void ebt_early_init_once();
6
7int main(int argc, char *argv[])
8{
9	ebt_silent = 0;
10	ebt_early_init_once();
11	strcpy(replace.name, "filter");
12	do_command(argc, argv, EXEC_STYLE_PRG, &replace);
13	return 0;
14}
15