1994-12-04 21:12:26 +01:00
|
|
|
/*
|
2001-03-09 21:09:28 +01:00
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* "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
|
|
|
|
* ----------------------------------------------------------------------------
|
1994-12-04 21:12:26 +01:00
|
|
|
*/
|
|
|
|
|
2001-03-14 20:39:29 +01:00
|
|
|
#ifndef lint
|
|
|
|
static const char rcsid[] =
|
|
|
|
"$FreeBSD$";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
1997-10-27 08:55:31 +01:00
|
|
|
#include <stdio.h>
|
2001-06-24 22:25:23 +02:00
|
|
|
#include <stdlib.h>
|
1995-03-11 10:33:25 +01:00
|
|
|
|
1997-10-27 08:55:31 +01:00
|
|
|
int
|
2001-03-09 21:09:28 +01:00
|
|
|
main(int argc, char **argv)
|
1994-12-04 21:12:26 +01:00
|
|
|
{
|
|
|
|
|
2001-03-09 21:09:28 +01:00
|
|
|
fprintf(stderr, "ERROR: vnconfig(8) has been discontinued\n");
|
2001-03-14 20:39:29 +01:00
|
|
|
fprintf(stderr, "\tPlease use mdconfig(8).\n");
|
2001-03-09 21:09:28 +01:00
|
|
|
exit (1);
|
1999-03-14 10:20:01 +01:00
|
|
|
}
|