Release calc version 2.12.3.0

This commit is contained in:
Landon Curt Noll
2008-02-24 00:02:29 -08:00
parent b3648f030f
commit bdf495150e
9 changed files with 228 additions and 75 deletions

View File

@@ -19,8 +19,8 @@
* received a copy with calc; if not, write to Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* @(#) $Revision: 30.5 $
* @(#) $Id: version.c,v 30.5 2007/10/16 12:22:22 chongo Exp $
* @(#) $Revision: 30.6 $
* @(#) $Id: version.c,v 30.6 2008/02/24 07:58:36 chongo Exp $
* @(#) $Source: /usr/local/src/cmd/calc/RCS/version.c,v $
*
* Under source code control: 1990/05/22 11:00:58
@@ -48,8 +48,8 @@ static char *program;
#define MAJOR_VER 2 /* major library version */
#define MINOR_VER 12 /* minor library version */
#define MAJOR_PATCH 2 /* major software level under library version */
#define MINOR_PATCH 2 /* minor software level or 0 if none */
#define MAJOR_PATCH 3 /* major software level under library version */
#define MINOR_PATCH 0 /* minor software level or 0 if not patched */
/*
@@ -103,8 +103,6 @@ char *Copyright = "\n"
* string does not contain the title, just:
*
* x.y.z.w
* x.y.z
* x.y
*/
char *
version(void)
@@ -121,15 +119,9 @@ version(void)
/*
* form the version buffer
*/
if (MINOR_PATCH > 0) {
snprintf(verbuf, BUFSIZ,
"%d.%d.%d.%d", calc_major_ver, calc_minor_ver,
calc_major_patch, calc_minor_patch);
} else {
snprintf(verbuf, BUFSIZ,
"%d.%d.%d", calc_major_ver,
calc_minor_ver, calc_major_patch);
}
snprintf(verbuf, BUFSIZ,
"%d.%d.%d.%d", calc_major_ver, calc_minor_ver,
calc_major_patch, calc_minor_patch);
/*
* save the versions string into a newly malloced buffer