home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / GNU / SWALIBAS.ZIP / VERSION.C < prev   
Encoding:
Text File  |  1990-09-09  |  1.4 KB  |  48 lines

  1. /* version.c - identify the revision of swaplib.
  2.    Copyright (C) 1990 by Thorsten Ohl, td12@ddagsi3.bitnet
  3.  
  4.    This file is part of SWAPLIB (the library), a library for efficient
  5.    execution of child processes under MS-DOS.
  6.  
  7.    The library is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License as published by
  9.    the Free Software Foundation; either version 1, or (at your option)
  10.    any later version.
  11.  
  12.    The library is distributed in the hope that it will be useful,
  13.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.    GNU General Public License for more details.
  16.  
  17.    You should have received a copy of the GNU General Public License
  18.    along with the library; if not, write to the Free Software
  19.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  */
  21.  
  22.  
  23. char _swap_version[] =
  24.   "$Header: e:/gnu/swaplib/RCS/version.c'v 0.9 90/09/09 21:44:26 tho Stable $\n"
  25.   "$" "Header: compiled for the "
  26. #if defined (M_I86HM)
  27.   "huge"
  28. #elif defined (M_I86LM)
  29.   "large"
  30. #elif defined (M_I86MM)
  31.   "medium"
  32. #elif defined (M_I86CM)
  33.   "compact"
  34. #elif defined (M_I86SM)
  35.   "small"
  36. #else
  37.   "unkown"
  38. #endif
  39.   " memory model, " __DATE__ " " __TIME__ " $";
  40.  
  41. /* 
  42.  * Local Variables:
  43.  * mode:C
  44.  * ChangeLog:ChangeLog
  45.  * compile-command:make
  46.  * End:
  47.  */
  48.