]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/vnconfig/vnconfig.c
This commit was generated by cvs2svn to compensate for changes in r158417,
[FreeBSD/FreeBSD.git] / usr.sbin / vnconfig / vnconfig.c
1 /*
2  * ----------------------------------------------------------------------------
3  * "THE BEER-WARE LICENSE" (Revision 42):
4  * <phk@FreeBSD.ORG> wrote this file.  As long as you retain this notice you
5  * can do whatever you want with this stuff. If we meet some day, and you think
6  * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
7  * ----------------------------------------------------------------------------
8  */
9
10 #ifndef lint
11 static const char rcsid[] =
12   "$FreeBSD$";
13 #endif /* not lint */
14
15 #include <stdio.h>
16 #include <stdlib.h>
17
18 int
19 main(int argc, char **argv)
20 {
21
22         fprintf(stderr, "ERROR: vnconfig(8) has been discontinued\n");
23         fprintf(stderr, "\tPlease use mdconfig(8).\n");
24         exit (1);
25 }