mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			646 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			646 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _OS_LIBC_H_
 | 
						|
#define _OS_LIBC_H_
 | 
						|
 | 
						|
#include "ultratypes.h"
 | 
						|
 | 
						|
// old bstring functions that aren't present on some platforms
 | 
						|
 | 
						|
#if defined(__APPLE__)
 | 
						|
 | 
						|
// macOS libc has them
 | 
						|
#include <strings.h>
 | 
						|
 | 
						|
#elif defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200809L) || defined(NO_BZERO_BCOPY)
 | 
						|
 | 
						|
// there's no way that shit's defined, use memcpy/memset
 | 
						|
#include <string.h>
 | 
						|
#undef bzero
 | 
						|
#undef bcopy
 | 
						|
#define bzero(buf, len) memset((buf), 0, (len))
 | 
						|
#define bcopy(src, dst, len) memcpy((dst), (src), (len))
 | 
						|
 | 
						|
#else
 | 
						|
 | 
						|
// hope for the best
 | 
						|
extern void bcopy(const void *, void *, size_t);
 | 
						|
extern void bzero(void *, size_t);
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* !_OS_LIBC_H_ */
 |