13 lines
		
	
	
		
			195 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			195 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
| #include <lib.h>
 | |
| /* bcopy - Berklix equivalent of memcpy  */
 | |
| 
 | |
| #include <string.h>
 | |
| 
 | |
| void bcopy(src, dst, length)
 | |
| _CONST void *src;
 | |
| void *dst;
 | |
| size_t length;
 | |
| {
 | |
|   (void) memcpy(dst, src, length);
 | |
| }
 | 
