1313544Spstef/* version.c: The opieversion() library function.
2313544Spstef
3313544Spstef%%% portions-copyright-cmetz-96
4313544SpstefPortions of this software are Copyright 1996-1999 by Craig Metz, All Rights
5313544SpstefReserved. The Inner Net License Version 2 applies to these portions of
6313544Spstefthe software.
7313544SpstefYou should have received a copy of the license with this software. If
8you didn't get a copy, you may request one from <license@inner.net>.
9
10Portions of this software are Copyright 1995 by Randall Atkinson and Dan
11McDonald, All Rights Reserved. All Rights under this copyright are assigned
12to the U.S. Naval Research Laboratory (NRL). The NRL Copyright Notice and
13License Agreement applies to this software.
14
15        History:
16
17	Modified by cmetz for OPIE 2.2. Use FUNCTION declaration et al.
18        Created at NRL for OPIE 2.2 from opiesubr.c.
19*/
20#include "opie_cfg.h"
21#include "opie.h"
22
23VOIDRET opieversion FUNCTION_NOARGS
24{
25  printf("\nOPIE %s (%s)\n\n", VERSION, DATE);
26  exit(0);
27}
28