home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 26 / AACD 26.iso / AACD / Programming / ace_gpl_release / src / ace / c / ver.c < prev    next >
Encoding:
Text File  |  1998-10-04  |  1.4 KB  |  48 lines

  1. /* << ACE >>
  2. **
  3. ** -- Amiga BASIC Compiler --
  4. **
  5. ** ** Compiler version info' ***
  6. ** Copyright (C) 1998 David Benn
  7. ** 
  8. ** This program is free software; you can redistribute it and/or
  9. ** modify it under the terms of the GNU General Public License
  10. ** as published by the Free Software Foundation; either version 2
  11. ** of the License, or (at your option) any later version.
  12. **
  13. ** This program is distributed in the hope that it will be useful,
  14. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ** GNU General Public License for more details.
  17. **
  18. ** You should have received a copy of the GNU General Public License
  19. ** along with this program; if not, write to the Free Software
  20. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  21. **
  22. ** Author: David J Benn
  23. **   Date: 24th,29th July 1994,
  24. **       3rd,10th,19th,20th,22nd,28th August 1994,
  25. **       1st,3rd,4th,9th-12th,17th September 1994,
  26. **       1st,2nd October 1994,
  27. **       5th,11th,12th March 1995,
  28. **       7th,8th August 1995,
  29. **       6th October 1995,
  30. **       6th,7th November 1995,
  31. **       10th March 1996,
  32. **       9th September 1996
  33. */
  34.  
  35. /* version string for AmigaDOS VERSION command */
  36. static     char     *ace_ver = "$VER: ACE 2.4 (09.09.96)";
  37.  
  38. /* version number for display */
  39. static  char    *version_string = "2.4";
  40.  
  41. char    *version()
  42. {
  43. /*
  44. ** Returns compiler version information.
  45. */
  46.     return version_string;
  47. }
  48.