/* * Copyright (C) 2015 Martine Lenders * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @addtogroup cpu_atmega_common * @{ * * @file * @brief Adds include for missing inttype definitions * * @author Martine Lenders */ #ifndef INTTYPES_H #define INTTYPES_H #include_next #ifdef __cplusplus extern "C" { #endif #define PRIo64 "llo" /**< Format string for octal 64-bit number */ #define PRIx64 "llx" /**< Format string for hexadecimal 64-bit number */ #define PRIu64 "llu" /**< Format string for unsigned 64-bit number */ #define PRId64 "lld" /**< Format string for signed 64-bit number */ #ifdef __cplusplus } #endif #endif /* INTTYPES_H */ /** @} */