File: prversion.c

package info (click to toggle)
zmailer 2.99.51.52pre3-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 16,596 kB
  • ctags: 7,422
  • sloc: ansic: 90,470; sh: 3,608; makefile: 2,784; perl: 1,585; python: 115; awk: 22
file content (25 lines) | stat: -rw-r--r-- 647 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 *	Copyright 1992 by Rayan S. Zachariassen, all rights reserved.
 *	This will be free software, but only when it is finished.
 */
/*
 *	A lot of changes all around over the years by Matti Aarnio
 *	<mea@nic.funet.fi> (and elsewere), copyright 1992-1999
 */

#include "mailer.h"
#include "libz.h"
#include "libsh.h"

static const char *Copyright = "Copyright 1992 Rayan S. Zachariassen\n\
Copyright 1992-1999 Matti Aarnio";

void
prversion(prgname)
	const char *prgname;
{
	fprintf(stderr, "ZMailer %s (%s)\n  %s:%s\n%s\n", prgname,
		Version, CC_user, CC_pwd, Copyright);
	fprintf(stderr, "Configured with command: '%s'\n",
		CONFIGURE_CMD);
}