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 <sys/types.h>
2
#include <unistd.h>
3
 
4
int
5
shutdown(int fd, int how)
6
{
7
	if(how == 2)
8
		close(fd);
9
 
10
	return 0;
11
}