auto_init: eliminated pedantic warnings

Otherwise pedantic complains:
Warning: ISO C forbids an empty translation unit
This commit is contained in:
Oleg Hahm 2015-05-27 21:52:49 +02:00
parent f4f328fa54
commit 2e691cf565
4 changed files with 8 additions and 0 deletions

View File

@ -65,6 +65,8 @@ void auto_init_kw2xrf(void)
}
}
}
#else
typedef int dont_be_pedantic;
#endif /* MODULE_NG_KW2XRF */
/** @} */

View File

@ -64,6 +64,8 @@ void auto_init_ng_at86rf2xx(void)
}
}
}
#else
typedef int dont_be_pedantic;
#endif /* MODULE_NG_AT86RF2XX */
/** @} */

View File

@ -60,5 +60,7 @@ void auto_init_slip(void)
}
}
#else
typedef int dont_be_pedantic;
#endif /* MODULE_NG_SLIP */
/** @} */

View File

@ -67,5 +67,7 @@ void auto_init_xbee(void)
}
}
#else
typedef int dont_be_pedantic;
#endif /* MODULE_XBEE */
/** @} */