iproute2/ip/iplink_dummy.c
Stephen Hemminger 6054c1ebf7 SPDX license identifiers
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>
2017-11-24 12:21:35 -08:00

18 lines
342 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#include <stdio.h>
#include <stdlib.h>
#include "utils.h"
#include "ip_common.h"
static void dummy_print_help(struct link_util *lu,
int argc, char **argv, FILE *f)
{
fprintf(f, "Usage: ... dummy\n");
}
struct link_util dummy_link_util = {
.id = "dummy",
.print_help = dummy_print_help,
};