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

safeguard intrinsics.h include since it is only provided by msp430-gcc >= 4.6

This commit is contained in:
Thomas Eichinger 2014-01-21 11:27:21 +01:00
parent 41fca84c09
commit eff2c9aea3

View File

@ -1,5 +1,7 @@
#include <stdio.h>
#include <intrinsics.h> // MSP430-gcc compiler instrinsics
#if (__GNUC__ >= 4) && (__GNUC_MINOR__ > 5)
#include <intrinsics.h> // MSP430-gcc compiler instrinsics
#endif
#include "board.h"
#include <msp430.h>