I was wondering what the best way to deal with code containing GCC's __attribute__
extension when using MSVC. Is the following a safe way of dealing with this:
#define __attribute__(x) /* blank - should simply ignore thanks to C preprocessor */
Thanks!