home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Source / version.c < prev   
Encoding:
C/C++ Source or Header  |  1993-03-02  |  1.6 KB  |  55 lines

  1. static char *RCSid = "$Id: version.c%v 3.38.2.86 1993/03/01 01:50:57 woo Exp woo $";
  2.  
  3.  
  4. /* GNUPLOT - version.c */
  5. /*
  6.  * Copyright (C) 1986 - 1993   Thomas Williams, Colin Kelley
  7.  *
  8.  * Permission to use, copy, and distribute this software and its
  9.  * documentation for any purpose with or without fee is hereby granted, 
  10.  * provided that the above copyright notice appear in all copies and 
  11.  * that both that copyright notice and this permission notice appear 
  12.  * in supporting documentation.
  13.  *
  14.  * Permission to modify the software is granted, but not the right to
  15.  * distribute the modified code.  Modifications are to be distributed 
  16.  * as patches to released version.
  17.  *  
  18.  * This software is provided "as is" without express or implied warranty.
  19.  * 
  20.  *
  21.  * AUTHORS
  22.  * 
  23.  *   Original Software:
  24.  *     Thomas Williams,  Colin Kelley.
  25.  * 
  26.  *   Gnuplot 2.0 additions:
  27.  *       Russell Lang, Dave Kotz, John Campbell.
  28.  *
  29.  *   Gnuplot 3.0 additions:
  30.  *       Gershon Elber and many others.
  31.  * 
  32.  *   Gnuplot 3.3 additions:
  33.  *       Alex Woo and many others.
  34.  * 
  35.  * Send your comments or suggestions to 
  36.  *  info-gnuplot@dartmouth.edu.
  37.  * This is a mailing list; to join it send a note to 
  38.  *  info-gnuplot-request@dartmouth.edu.  
  39.  * Send bug reports to
  40.  *  bug-gnuplot@dartmouth.edu.
  41.  *
  42. char version[] = "3.38.2.86 ";
  43.  */
  44.  
  45. char version[] = "$Id: version.c%v 3.38.2.86 1993/03/01 01:50:57 woo Exp woo $";
  46. char patchlevel[] = "3 beta 2.86, 1 Mar 93";
  47. char date[] = "Mon Mar 1 01:50:57 PDT 1993"; 
  48. char copyright[] = "Copyright(C) 1986 - 1993";
  49.  
  50. /* override in Makefile */
  51. #ifndef CONTACT
  52. # define CONTACT "bug-gnuplot@dartmouth.edu"
  53. #endif
  54. char bug_email[] = CONTACT;
  55.