]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/opie/libopie/version.c
Import libcxxrt master 8a853717e61d5d55cbdf74d9d0a7545da5d5ff92.
[FreeBSD/FreeBSD.git] / contrib / opie / libopie / version.c
1 /* version.c: The opieversion() library function.
2
3 %%% portions-copyright-cmetz-96
4 Portions of this software are Copyright 1996-1999 by Craig Metz, All Rights
5 Reserved. The Inner Net License Version 2 applies to these portions of
6 the software.
7 You should have received a copy of the license with this software. If
8 you didn't get a copy, you may request one from <license@inner.net>.
9
10 Portions of this software are Copyright 1995 by Randall Atkinson and Dan
11 McDonald, All Rights Reserved. All Rights under this copyright are assigned
12 to the U.S. Naval Research Laboratory (NRL). The NRL Copyright Notice and
13 License 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 <stdio.h>
21 #include <stdlib.h>
22 #include "opie_cfg.h"
23 #include "opie.h"
24
25 VOIDRET opieversion FUNCTION_NOARGS
26 {
27   printf("\nOPIE %s (%s)\n\n", VERSION, DATE);
28   exit(0);
29 }