diff options
Diffstat (limited to 'LUFA/Common/Common.h')
-rw-r--r-- | LUFA/Common/Common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h index 67bbb9295..74b687b40 100644 --- a/LUFA/Common/Common.h +++ b/LUFA/Common/Common.h @@ -63,7 +63,7 @@ #include "Atomic.h"
#define PROGMEM const
- #else
+ #elif defined(__AVR__)
#include <avr/io.h>
#endif
@@ -195,7 +195,7 @@ /** Type define for a signed native word-sized chunk of data. */
typedef int32_t intN_t;
- #else
+ #elif defined(__AVR__)
/** Type define for an unsigned native word-sized chunk of data. */
typedef uint8_t uintN_t;
|