diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-07-01 13:20:16 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-07-01 13:20:16 +0000 |
commit | 5d9403fde4e0d89313121fcd5fa4cfc6c4ddfc4e (patch) | |
tree | ea79e4966e1566bc4fd088db9993a8f099558eba /LUFA/Platform/UC3 | |
parent | 2e27cc267069368071915b48e9090d393bedd1ce (diff) | |
download | lufa-5d9403fde4e0d89313121fcd5fa4cfc6c4ddfc4e.tar.gz lufa-5d9403fde4e0d89313121fcd5fa4cfc6c4ddfc4e.tar.bz2 lufa-5d9403fde4e0d89313121fcd5fa4cfc6c4ddfc4e.zip |
Fix up non-relative header file include paths (thanks to Kim Blomqvist).
Diffstat (limited to 'LUFA/Platform/UC3')
-rw-r--r-- | LUFA/Platform/UC3/ClockManagement.h | 2 | ||||
-rw-r--r-- | LUFA/Platform/UC3/InterruptManagement.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Platform/UC3/ClockManagement.h b/LUFA/Platform/UC3/ClockManagement.h index ac2431476..b6b6ece27 100644 --- a/LUFA/Platform/UC3/ClockManagement.h +++ b/LUFA/Platform/UC3/ClockManagement.h @@ -72,7 +72,7 @@ #define _UC3_CLOCK_MANAGEMENT_H_ /* Includes: */ - #include <LUFA/Common/Common.h> + #include "../../Common/Common.h" /* Enable C linkage for C++ Compilers: */ #if defined(__cplusplus) diff --git a/LUFA/Platform/UC3/InterruptManagement.h b/LUFA/Platform/UC3/InterruptManagement.h index 7441a3011..2f9ec2304 100644 --- a/LUFA/Platform/UC3/InterruptManagement.h +++ b/LUFA/Platform/UC3/InterruptManagement.h @@ -71,7 +71,7 @@ #define _UC3_INTERRUPT_MANAGEMENT_H_ /* Includes: */ - #include <LUFA/Common/Common.h> + #include "../../Common/Common.h" /* Enable C linkage for C++ Compilers: */ #if defined(__cplusplus) |