15 lines
		
	
	
		
			221 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			221 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <lib.h>
 | 
						|
#define chmod	_chmod
 | 
						|
#include <sys/stat.h>
 | 
						|
 | 
						|
PUBLIC int chmod(name, mode)
 | 
						|
_CONST char *name;
 | 
						|
_mnx_Mode_t mode;
 | 
						|
{
 | 
						|
  message m;
 | 
						|
 | 
						|
  m.m3_i2 = mode;
 | 
						|
  _loadname(name, &m);
 | 
						|
  return(_syscall(FS, CHMOD, &m));
 | 
						|
}
 |