xref: /netbsd-src/games/warp/version.c (revision 1182a44c59cae4d586117d55eca24b4b8b173211)
1 /* Header: version.c,v 7.0 86/10/08 15:14:39 lwall Exp
2  *
3  * Log:	version.c,v
4  * Revision 7.0  86/10/08  15:14:39  lwall
5  * Split into separate files.  Added amoebas and pirates.
6  *
7  */
8 
9 #include "patchlevel.h"
10 #include "INTERN.h"
11 #include "version.h"
12 
13 #include <stdio.h>
14 
15 /* Print out the version number. */
16 
17 void
version(void)18 version(void)
19 {
20     extern char rcsid[];
21 
22     printf("%s\r\nPatch level: %d\r\n", rcsid, PATCHLEVEL);
23 }
24