1 #ifndef STUBS_H_
2 #define STUBS_H_
3 
4 #include <zephyr.h>
5 
6 #define STUB(fmt, args...) printk("%s(): %d: STUB: " fmt "\n", __func__, __LINE__, ##args)
7 
8 #endif /* STUBS_H_ */
9