mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			343 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			343 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _OS_LIBC_H_
 | 
						|
#define _OS_LIBC_H_
 | 
						|
 | 
						|
#include "ultratypes.h"
 | 
						|
 | 
						|
#ifdef OSX_BUILD
 | 
						|
#include <strings.h> // OSX doesn't like it not being included?
 | 
						|
#else
 | 
						|
 | 
						|
// Old deprecated functions from strings.h, replaced by memcpy/memset.
 | 
						|
extern void bcopy(const void *, void *, size_t);
 | 
						|
extern void bzero(void *, size_t);
 | 
						|
 | 
						|
#endif
 | 
						|
#endif /* !_OS_LIBC_H_ */
 |