Bleamer
Bleamer

Reputation: 647

Omitting inline ASM code in C source code

While using MS VC98, is there a way to omit compiling inline ASM code in a C source ?

Upvotes: 0

Views: 222

Answers (1)

David Heffernan
David Heffernan

Reputation: 612964

There's no magic switch built into the compiler to do this. You'll have to do it with the pre-processor and I can't see any alternative to wrapping all such blocks in #ifdef.

Upvotes: 3

Related Questions