AMD64 - AUDIT RUN - Fix format strings, size_t, and other issues
[dragonfly.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 }