home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / Python 1.3 / source code / Python / getcopyright.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-17  |  189 b   |  10 lines  |  [TEXT/R*ch]

  1. /* Return the copyright string.  This is updated manually. */
  2.  
  3. #include "Python.h"
  4.  
  5. const char *
  6. getcopyright()
  7. {
  8.     return "Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam";
  9. }
  10.