blob: d349d390ebdbb9aa922d83fe7fb75ab89c03c918 [file] [log] [blame]
Bart De Schuymer6622a012005-01-19 21:09:05 +00001#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}