home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Carousel Volume 2 #1
/
carousel.iso
/
mactosh
/
lang
/
lsc30p4u.sit
/
stdver.c
< prev
next >
Wrap
Text File
|
1989-01-16
|
593b
|
23 lines
/*
Routines for LightspeedC
(C) Copyright 1986. THINK Technologies, Inc. All rights reserved.
*/
/* This module is purely for identification of the standard i/o release,
however, for those diehards who wanted it, it does contain a
perfectly usable function that returns a pointer to a string that
contains the version of standard i/o */
/* return the library version number of stdio */
#line 0 std_ver()
char *std_ver()
{
static char STDIO_VERSION[] = "THINK C Libraries 3.01p4";
static char copyright[] = "⌐ 1989 Symantec Corp. All rights reserved.";
return (STDIO_VERSION);
}