You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
900 B
C
38 lines
900 B
C
/*
|
|
* Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
*
|
|
* 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 <mlenders@inf.fu-berlin.de>
|
|
*/
|
|
#ifndef RIOT_INTTYPES_H
|
|
#define RIOT_INTTYPES_H
|
|
|
|
#include_next <inttypes.h>
|
|
|
|
#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 /* RIOT_INTTYPES_H */
|
|
/** @} */
|