mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-30 18:05:48 +01:00 
			
		
		
		
	As part of bringing the master branch back in to next, we need to allow for all of these changes to exist here. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			223 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			223 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <linux/types.h>
 | |
| 
 | |
| int test_types(void)
 | |
| {
 | |
| 	uintptr_t uintptr = 0;
 | |
| 	uint64_t uint64 = 0;
 | |
| 	u64 u64_val = 0;
 | |
| 
 | |
| 	printf("uintptr = %lu\n", uintptr);
 | |
| 	printf("uint64 = %llu\n", uint64);
 | |
| 	printf("u64 = %llu\n", u64_val);
 | |
| }
 |