summaryrefslogtreecommitdiffstats
path: root/usr.sbin/vnconfig/vnconfig.c
blob: fb976aef78f25a836213c073a29a31ddc57c8bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * ----------------------------------------------------------------------------
 * "THE BEER-WARE LICENSE" (Revision 42):
 * <phk@FreeBSD.ORG> wrote this file.  As long as you retain this notice you
 * can do whatever you want with this stuff. If we meet some day, and you think
 * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
 * ----------------------------------------------------------------------------
 */

#ifndef lint
static const char rcsid[] =
  "$FreeBSD$";
#endif /* not lint */

#include <stdio.h>

int
main(int argc, char **argv)
{

	fprintf(stderr, "ERROR: vnconfig(8) has been discontinued\n");
	fprintf(stderr, "\tPlease use mdconfig(8).\n");
	exit (1);
}
OpenPOWER on IntegriCloud