mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-22 04:44:46 +00:00

Remove <common.h> from all "test/" files and when needed add missing include files directly. 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);
|
|
}
|