]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - warp/version.c
cgram: consistently use char for characters
[bsdgames-darwin.git] / warp / version.c
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
18 version(void)
19 {
20 extern char rcsid[];
21
22 printf("%s\r\nPatch level: %d\r\n", rcsid, PATCHLEVEL);
23 }