home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / progmisc / dif115as.zip / VERSION.C < prev   
C/C++ Source or Header  |  1992-02-22  |  215b  |  9 lines

  1. /* Version number of GNU diff.  */
  2.  
  3. #ifdef MSDOS
  4. char *version_string
  5.   =  "1.15 (compiled " __DATE__ " " __TIME__ " for MS-DOS)";
  6. #else /* not MSDOS */
  7. char *version_string = "1.15";
  8. #endif /* not MSDOS */
  9.