1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/core/lib/include/kernel_defines.h

39 lines
792 B
C
Raw Normal View History

/*
* Copyright (C) 2014 Freie Universität Berlin
2017-05-12 17:46:09 +02:00
* 2017 HAW-Hamburg
*
2014-08-23 15:43:13 +02:00
* 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.
*/
/**
* @ingroup core_internal
* @{
*
* @file
* @brief Common macros and compiler attributes/pragmas configuration
*
* @author René Kijewski <rene.kijewski@fu-berlin.de>
2017-05-12 17:46:09 +02:00
* @author Michel Rottleuthner <michel.rottleuthner@haw-hamburg.de>
*/
#ifndef KERNEL_DEFINES_H
#define KERNEL_DEFINES_H
#include "modules.h"
#include "riot_version.h"
#include "compiler_hints.h"
#include "container.h"
#ifdef __cplusplus
2020-03-30 17:02:08 +02:00
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif /* KERNEL_DEFINES_H */
/** @} */