u-boot/test/stdint/int-types.c
Tom Rini 03de305ec4 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"
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>
2024-05-20 13:35:03 -06:00

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);
}