arm-trusted-firmware/include/lib/libc/aarch64/inttypes_.h

22 lines
452 B
C

/*
* Copyright 2020 Broadcom
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/*
* Portions copyright (c) 2020, ARM Limited and Contributors.
* All rights reserved.
*/
#ifndef INTTYPES__H
#define INTTYPES__H
#define PRId64 "ld" /* int64_t */
#define PRIi64 "li" /* int64_t */
#define PRIo64 "lo" /* int64_t */
#define PRIu64 "lu" /* uint64_t */
#define PRIx64 "lx" /* uint64_t */
#define PRIX64 "lX" /* uint64_t */
#endif /* INTTYPES__H */