2014-02-12 14:58:59 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Freie Universität Berlin
|
2017-05-12 17:46:09 +02:00
|
|
|
* 2017 HAW-Hamburg
|
2014-02-12 14:58:59 +01:00
|
|
|
*
|
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.
|
2014-02-12 14:58:59 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2019-01-07 15:36:14 +01:00
|
|
|
* @ingroup core_internal
|
2014-02-12 14:58:59 +01:00
|
|
|
* @{
|
|
|
|
*
|
2015-05-22 07:34:41 +02:00
|
|
|
* @file
|
2016-03-09 01:27:23 +01:00
|
|
|
* @brief Common macros and compiler attributes/pragmas configuration
|
2014-02-12 14:58:59 +01:00
|
|
|
*
|
|
|
|
* @author René Kijewski <rene.kijewski@fu-berlin.de>
|
2017-05-12 17:46:09 +02:00
|
|
|
* @author Michel Rottleuthner <michel.rottleuthner@haw-hamburg.de>
|
2014-02-12 14:58:59 +01:00
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef KERNEL_DEFINES_H
|
|
|
|
#define KERNEL_DEFINES_H
|
2014-02-12 14:58:59 +01:00
|
|
|
|
2022-11-11 13:12:46 +01:00
|
|
|
#include "modules.h"
|
|
|
|
#include "riot_version.h"
|
|
|
|
#include "compiler_hints.h"
|
|
|
|
#include "container.h"
|
2014-06-03 21:53:15 +02:00
|
|
|
|
2014-10-09 01:18:16 +02:00
|
|
|
#ifdef __cplusplus
|
2020-03-30 17:02:08 +02:00
|
|
|
extern "C" {
|
2014-10-09 01:18:16 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* KERNEL_DEFINES_H */
|
2014-04-07 11:16:32 +02:00
|
|
|
/** @} */
|