mirror_iproute2/ip/iplink_vcan.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
337 B
C

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