4.4BSD/usr/src/contrib/calc-1.26.4/version.c
/*
* Copyright (c) 1993 David I. Bell
* Permission is granted to use, distribute, or modify this source,
* provided that this copyright notice remains intact.
*
* version - determine the version of calc
*/
#include <stdio.h>
#define MAJOR_VER 1 /* major version */
#define MINOR_VER 26 /* minor version */
#define PATCH_LEVEL 4 /* patch level */
void
version(stream)
FILE *stream; /* stream to write version on */
{
fprintf(stream, "calc version: %d.%d.%d\n",
MAJOR_VER, MINOR_VER, PATCH_LEVEL);
}
/* END CODE */