diff options
Diffstat (limited to 'atmel-samd/asf4/samd51/hal/utils/include/compiler.h')
| -rw-r--r-- | atmel-samd/asf4/samd51/hal/utils/include/compiler.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/atmel-samd/asf4/samd51/hal/utils/include/compiler.h b/atmel-samd/asf4/samd51/hal/utils/include/compiler.h new file mode 100644 index 000000000..3cd654f53 --- /dev/null +++ b/atmel-samd/asf4/samd51/hal/utils/include/compiler.h @@ -0,0 +1,28 @@ +/****************************************************************************** + * compiler.h + * + * Created: 05.05.2014 + * Author: N. Fomin +******************************************************************************/ + +#ifndef _COMPILER_H +#define _COMPILER_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include <stddef.h> +#include <stdint.h> +#include <stdbool.h> + +#ifndef _UNIT_TEST_ +#include "parts.h" +#endif +#include "err_codes.h" + +#ifdef __cplusplus +} +#endif + +#endif /* _COMPILER_H */ |
