For inline asm code I use __asm for vc++ compiler and __asm__() or asm() construct for gcc under linux. (intel/at&t syntax accordingly)
Is there a way to declare inline assembly (x86) in C for them both in a universal way?
P.S. An automated tool for incorporating both is also acceptable.