home *** CD-ROM | disk | FTP | other *** search
- /* version.c - identify the revision of swaplib.
- Copyright (C) 1990 by Thorsten Ohl, td12@ddagsi3.bitnet
-
- This file is part of SWAPLIB (the library), a library for efficient
- execution of child processes under MS-DOS.
-
- The library is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 1, or (at your option)
- any later version.
-
- The library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with the library; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
-
- char _swap_version[] =
- "$Header: e:/gnu/swaplib/RCS/version.c'v 0.9 90/09/09 21:44:26 tho Stable $\n"
- "$" "Header: compiled for the "
- #if defined (M_I86HM)
- "huge"
- #elif defined (M_I86LM)
- "large"
- #elif defined (M_I86MM)
- "medium"
- #elif defined (M_I86CM)
- "compact"
- #elif defined (M_I86SM)
- "small"
- #else
- "unkown"
- #endif
- " memory model, " __DATE__ " " __TIME__ " $";
-
- /*
- * Local Variables:
- * mode:C
- * ChangeLog:ChangeLog
- * compile-command:make
- * End:
- */
-