18 lines
277 B
C
18 lines
277 B
C
#ifndef lint
|
|
static char sccsid[] = "@(#)version.c 1.1 94/10/31 SMI";
|
|
#endif
|
|
|
|
/*
|
|
* Copyright (c) 1988 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
/*
|
|
* This is a small function that returns the current version of the assembler
|
|
*/
|
|
|
|
char *
|
|
version()
|
|
{
|
|
return "0.20 (October 14, 1988)";
|
|
}
|