/* $Header: /afs/dev.mit.edu/project/sipb/repository/third/mh/miscellany/patch-2.0.12u8/version.c,v 1.1.1.1 1997/12/10 21:19:36 ghudson Exp $
 *
 * $Log: version.c,v $
 * Revision 1.1.1.1  1997/12/10 21:19:36  ghudson
 * 12/10/97 snapshot of the Athena source tree.
 *
 * Revision 1.1.1.1  1996/10/07 07:13:17  ghudson
 * Import of MH 6.8.3
 *
 * Revision 2.0  86/09/17  15:40:11  lwall
 * Baseline for netwide release.
 * 
 */

#include "EXTERN.h"
#include "common.h"
#include "util.h"
#include "INTERN.h"
#include "patchlevel.h"
#include "version.h"

void my_exit();

/* Print out the version number and die. */

void
version()
{
    fprintf(stderr, "Patch version 2.0, patch level %s\n", PATCHLEVEL);
    my_exit(0);
}
