1998-02-22 15:55:44 +03:00
|
|
|
/* $NetBSD: version.c,v 1.4 1998/02/22 13:33:51 christos Exp $ */
|
|
|
|
#include <sys/cdefs.h>
|
1993-08-02 21:48:44 +04:00
|
|
|
#ifndef lint
|
1998-02-22 15:55:44 +03:00
|
|
|
__RCSID("$NetBSD: version.c,v 1.4 1998/02/22 13:33:51 christos Exp $");
|
1993-08-02 21:48:44 +04:00
|
|
|
#endif /* not lint */
|
1993-04-09 15:33:50 +04:00
|
|
|
|
|
|
|
#include "EXTERN.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "INTERN.h"
|
|
|
|
#include "patchlevel.h"
|
|
|
|
#include "version.h"
|
|
|
|
|
|
|
|
/* Print out the version number and die. */
|
|
|
|
|
|
|
|
void
|
|
|
|
version()
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Patch version 2.0, patch level %s\n", PATCHLEVEL);
|
|
|
|
my_exit(0);
|
|
|
|
}
|