]> git.ipfire.org Git - thirdparty/u-boot.git/blame - test/stdint/int-types.c
test: Remove <common.h> and add needed includes
[thirdparty/u-boot.git] / test / stdint / int-types.c
CommitLineData
752ed086 1#include <linux/types.h>
b01495e6
SG
2
3int test_types(void)
4{
5 uintptr_t uintptr = 0;
6 uint64_t uint64 = 0;
7 u64 u64_val = 0;
8
dee37fc9
MY
9 printf("uintptr = %lu\n", uintptr);
10 printf("uint64 = %llu\n", uint64);
11 printf("u64 = %llu\n", u64_val);
b01495e6 12}