17 lines
		
	
	
		
			287 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			287 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
#include <lib.h>
 | 
						|
#define stat	_stat
 | 
						|
#include <sys/stat.h>
 | 
						|
#include <string.h>
 | 
						|
 | 
						|
PUBLIC int stat(name, buffer)
 | 
						|
_CONST char *name;
 | 
						|
struct stat *buffer;
 | 
						|
{
 | 
						|
  message m;
 | 
						|
 | 
						|
  m.m1_i1 = strlen(name) + 1;
 | 
						|
  m.m1_p1 = (char *) name;
 | 
						|
  m.m1_p2 = (char *) buffer;
 | 
						|
  return(_syscall(FS, STAT, &m));
 | 
						|
}
 |