• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "defs.h"
2 
SYS_FUNC(chdir)3 SYS_FUNC(chdir)
4 {
5 	if (entering(tcp)) {
6 		printpath(tcp, tcp->u_arg[0]);
7 	}
8 	return 0;
9 }
10