mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			346 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			346 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "platform_info.h"
 | 
						|
 | 
						|
#if IS_BIG_ENDIAN && IS_64_BIT
 | 
						|
#error msgbegin --endian big --bitwidth 64 msgend
 | 
						|
#elif IS_BIG_ENDIAN && !IS_64_BIT
 | 
						|
#error msgbegin --endian big --bitwidth 32 msgend
 | 
						|
#elif !IS_BIG_ENDIAN && IS_64_BIT
 | 
						|
#error msgbegin --endian little --bitwidth 64 msgend
 | 
						|
#else
 | 
						|
#error msgbegin --endian little --bitwidth 32 msgend
 | 
						|
#endif
 |