]>
Commit | Line | Data |
---|---|---|
7d424c71 JK |
1 | #include <stdio.h> |
2 | #include <stdlib.h> | |
3 | ||
4 | #include "utils.h" | |
5 | #include "ip_common.h" | |
6 | ||
7 | static void netdevsim_print_help(struct link_util *lu, | |
8 | int argc, char **argv, FILE *f) | |
9 | { | |
10 | fprintf(f, "Usage: ... netdevsim\n"); | |
11 | } | |
12 | ||
13 | struct link_util netdevsim_link_util = { | |
14 | .id = "netdevsim", | |
15 | .print_help = netdevsim_print_help, | |
16 | }; |