Staging
v0.8.1
Raw File
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

const char *
getcopyright()
{
	return "Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam";
}
back to top