FreeBSD-5.3/usr.sbin/vnconfig/vnconfig.c

Compare this file to the similar file:
Show the results in this format:

/*
 * ----------------------------------------------------------------------------
 * "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: src/usr.sbin/vnconfig/vnconfig.c,v 1.23 2001/06/24 20:25:22 dd Exp $";
#endif /* not lint */

#include <stdio.h>
#include <stdlib.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);
}