home *** CD-ROM | disk | FTP | other *** search
- /*
- 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);
- }
-