27 lines
516 B
C
27 lines
516 B
C
/*LINTLIBRARY*/
|
|
#ifndef lint
|
|
static char sccsid[] = "@(#)chdir.c 1.1 94/10/31 Copyright 1986 Sun Micro";
|
|
#endif
|
|
|
|
/*
|
|
* Copyright (c) 1986 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
#include <vroot.h>
|
|
#include "args.h"
|
|
|
|
static int chdir_thunk(path) char *path;
|
|
{
|
|
vroot_result= chdir(path);
|
|
return(vroot_result == 0);
|
|
}
|
|
|
|
int chdir_vroot(path, vroot_path, vroot_vroot)
|
|
char *path;
|
|
pathpt vroot_path;
|
|
pathpt vroot_vroot;
|
|
{
|
|
translate_with_thunk(path, chdir_thunk, vroot_path, vroot_vroot, rw_read);
|
|
return(vroot_result);
|
|
}
|