Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#include "lib.h"
2
#include <unistd.h>
3
#include "sys9.h"
4
 
5
int
6
chdir(const char *f)
7
{
8
	int n;
9
 
10
	n = _CHDIR(f);
11
	if(n < 0)
12
		_syserrno();
13
	return n;
14
}