pc-hack

PC HACK 3.61 source code (archival)
git clone http://frotz.net/git/pc-hack.git
Log | Files | Refs

version.c (336B)


      1 /* version.c - version 1.0.3 */
      2 
      3 #include "hack.h"
      4 
      5 doversion()
      6 {
      7 	pline("PC HACK %d.%d - Oct 26, 1986", vmajor, vminor);
      8 	return (0);
      9 }
     10 
     11 doMSCversion()
     12 {
     13 	pline("PC HACK %d.%d is the MSDOS(tm) version of UNIX(tm) HACK 1.03.",
     14 		vmajor, vminor);
     15 	pline("PC implementation in Microsoft(tm) C by D.Kneller, Berkeley, CA");
     16 	return (0);
     17 }