mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-21 12:33:49 +01:00
34 lines
613 B
C
34 lines
613 B
C
/*
|
|
* SPDX-FileCopyrightText: 2014 Freie Universität Berlin
|
|
* SPDX-FileCopyrightText: 2017 HAW-Hamburg
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @ingroup core_internal
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Common macros and compiler attributes/pragmas configuration
|
|
*
|
|
* @author René Kijewski <rene.kijewski@fu-berlin.de>
|
|
* @author Michel Rottleuthner <michel.rottleuthner@haw-hamburg.de>
|
|
*/
|
|
|
|
#include "modules.h"
|
|
#include "riot_version.h"
|
|
#include "compiler_hints.h"
|
|
#include "container.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|