home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / patch212.zip / version.c < prev    next >
C/C++ Source or Header  |  1990-09-07  |  556b  |  29 lines

  1. /* $Header: version.c,v 2.0 86/09/17 15:40:11 lwall Exp $
  2.  *
  3.  * $Log:    version.c,v $
  4.  * Revision 2.0  86/09/17  15:40:11  lwall
  5.  * Baseline for netwide release.
  6.  *
  7.  */
  8.  
  9. #include "EXTERN.h"
  10. #include "common.h"
  11. #include "util.h"
  12. #include "INTERN.h"
  13. #include "patchlev.h"
  14. #include "version.h"
  15.  
  16. /* Print out the version number and die. */
  17.  
  18. void
  19. version()
  20. {
  21.     extern char rcsid[];
  22.  
  23. #ifdef lint
  24.     rcsid[0] = rcsid[0];
  25. #else
  26.     fatal3("\n%s\nPatch level: %d, with unidiff support, for DOS and OS/2\n", rcsid, PATCHLEVEL);
  27. #endif
  28. }
  29.