122347Spst/* version.c: The opieversion() library function.
222347Spst
329964Sache%%% portions-copyright-cmetz-96
492906SmarkmPortions of this software are Copyright 1996-1999 by Craig Metz, All Rights
522347SpstReserved. The Inner Net License Version 2 applies to these portions of
622347Spstthe software.
722347SpstYou should have received a copy of the license with this software. If
822347Spstyou didn't get a copy, you may request one from <license@inner.net>.
922347Spst
1022347SpstPortions of this software are Copyright 1995 by Randall Atkinson and Dan
1122347SpstMcDonald, All Rights Reserved. All Rights under this copyright are assigned
1222347Spstto the U.S. Naval Research Laboratory (NRL). The NRL Copyright Notice and
1322347SpstLicense Agreement applies to this software.
1422347Spst
1522347Spst        History:
1622347Spst
1722347Spst	Modified by cmetz for OPIE 2.2. Use FUNCTION declaration et al.
1822347Spst        Created at NRL for OPIE 2.2 from opiesubr.c.
1922347Spst*/
2022347Spst#include "opie_cfg.h"
2122347Spst#include "opie.h"
2222347Spst
2322347SpstVOIDRET opieversion FUNCTION_NOARGS
2422347Spst{
2522347Spst  printf("\nOPIE %s (%s)\n\n", VERSION, DATE);
2622347Spst  exit(0);
2722347Spst}
28