mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 18:04:48 +00: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>
12 lines
223 B
C
12 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);
|
|
}
|