xref: /titanic_51/usr/src/cmd/refer/glue2.c (revision 11a8fa6cb17403e630122ac19b39a323c6e64142)
1*11a8fa6cSceastha /*
2*11a8fa6cSceastha  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
3*11a8fa6cSceastha  * Use is subject to license terms.
4*11a8fa6cSceastha  */
5*11a8fa6cSceastha 
67c478bd9Sstevel@tonic-gate /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
77c478bd9Sstevel@tonic-gate /*	  All Rights Reserved  	*/
87c478bd9Sstevel@tonic-gate 
97c478bd9Sstevel@tonic-gate /*
107c478bd9Sstevel@tonic-gate  * Copyright (c) 1980 Regents of the University of California.
117c478bd9Sstevel@tonic-gate  * All rights reserved. The Berkeley software License Agreement
127c478bd9Sstevel@tonic-gate  * specifies the terms and conditions for redistribution.
137c478bd9Sstevel@tonic-gate  */
147c478bd9Sstevel@tonic-gate 
157c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
167c478bd9Sstevel@tonic-gate 
177c478bd9Sstevel@tonic-gate 
187c478bd9Sstevel@tonic-gate char refdir[50];
197c478bd9Sstevel@tonic-gate 
20*11a8fa6cSceastha extern int corout();
21*11a8fa6cSceastha extern char *trimnl();
22*11a8fa6cSceastha 
23*11a8fa6cSceastha void
24*11a8fa6cSceastha savedir(void)
257c478bd9Sstevel@tonic-gate {
267c478bd9Sstevel@tonic-gate 	if (refdir[0] == 0)
277c478bd9Sstevel@tonic-gate 		corout("", refdir, "/usr/bin/pwd", "", 50);
287c478bd9Sstevel@tonic-gate 	trimnl(refdir);
297c478bd9Sstevel@tonic-gate }
307c478bd9Sstevel@tonic-gate 
31*11a8fa6cSceastha void
32*11a8fa6cSceastha restodir(void)
337c478bd9Sstevel@tonic-gate {
347c478bd9Sstevel@tonic-gate 	chdir(refdir);
357c478bd9Sstevel@tonic-gate }
36