fix consistency #if and #if defined()

This commit is contained in:
Markus Fröschle
2015-11-19 20:27:49 +00:00
parent 46c940ea2e
commit dd5fb8ab2e
3 changed files with 8 additions and 8 deletions

View File

@@ -1,9 +1,9 @@
#include <stddef.h>
#include "bas_types.h"
#if MACHINE_FIREBEE
#if defined(MACHINE_FIREBEE)
#include "firebee.h"
#elif MACHINE_M5484LITE
#elif defined(MACHINE_M5484LITE)
#include "m5484l.h"
#endif /* MACHINE_FIREBEE */