diff options
author | tmk <nobody@nowhere> | 2013-05-14 23:03:23 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-05-14 23:03:23 +0900 |
commit | cbb9c408e46a7a7a567f3d6e07713256152106d0 (patch) | |
tree | bd8e7c789fbb7f191b4de31498160f05d2f80229 /common/action_macro.c | |
parent | b9f558b3d89fc434d6dab348698d5100ff82d16b (diff) | |
parent | ff2d276b193632136c785d92ed01df48aea8461f (diff) |
Merge branch 'fix_print'
Diffstat (limited to 'common/action_macro.c')
-rw-r--r-- | common/action_macro.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/common/action_macro.c b/common/action_macro.c index 6d81a1efb4..71d1506f5c 100644 --- a/common/action_macro.c +++ b/common/action_macro.c @@ -15,10 +15,15 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <util/delay.h> -#include "debug.h" #include "action.h" #include "action_macro.h" +#ifdef DEBUG_ACTION +#include "debug.h" +#else +#include "nodebug.h" +#endif + #ifndef NO_ACTION_MACRO |