This patch mainly copies and modifies files existing in the current libc implementing minix specific functions. To keep consisten with the NetBSD libc, we remove namespace stubs and we use "namespace.h" and weak links.
		
			
				
	
	
		
			19 lines
		
	
	
		
			272 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			272 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <sys/cdefs.h>
 | 
						|
#include "namespace.h"
 | 
						|
#include <lib.h>
 | 
						|
 | 
						|
#include <unistd.h>
 | 
						|
 | 
						|
#ifdef __weak_alias
 | 
						|
__weak_alias(chroot, _chroot)
 | 
						|
#endif
 | 
						|
 | 
						|
PUBLIC int chroot(name)
 | 
						|
_CONST char *name;
 | 
						|
{
 | 
						|
  message m;
 | 
						|
 | 
						|
  _loadname(name, &m);
 | 
						|
  return(_syscall(VFS_PROC_NR, CHROOT, &m));
 | 
						|
}
 |