5 ms·
Yes having platform specific code in its own header source and just #ifdef the includes provides much cleaner and nicer code
by LefterisJP 15y ago
Yes having platform specific code in its own header source and just #ifdef the includes provides much cleaner and nicer code
- ori_b 15y agoDon't even do that -- have one header that all the platform interfaces implement without ifdefs. Keep the conditional compilation in the makefiles, not in the source.