home *** CD-ROM | disk | FTP | other *** search
- /***********************************************************
- * Name : Z3VINIT
- *
- * Usage : z3vinit(environ)
- * vidinit(vid)
- *
- * Inputs : environ = pointer to the environment
- * vid = pointer to the termcap
- *
- * Returns : nothing.
- *
- * Date Written : 86 May 10
- **********************************************************/
-
- char *vidptr;
-
- z3vinit(ptr)
- char *ptr;
- {
- extern char *envptr;
-
- envptr = ptr; /* set the environment pointer */
- vidptr = ptr+128; /* set the video pointer */
- }
-
- /********************* End Of Function ********************/
-
- vidinit(ptr)
- char *ptr;
- {
- vidptr = ptr; /* set the video pointer */
- }
-
- /********************* End Of Function ********************/