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)18version(void) 19 { 20 extern char rcsid[]; 21 22 printf("%s\r\nPatch level: %d\r\n", rcsid, PATCHLEVEL); 23 } 24