what is _NO_PROTO

I saw in many software's utility files ..something called #ifndef _NO_PROTO ..can some one explain me ..what is it ??
It means that all the code following that, as far as the #endif, will be ignored if someone has already written #define _NO_PROTO

It's commonly used in header guards.

http://en.wikipedia.org/wiki/Include_guard
Last edited on
thanx moschops ...
Topic archived. No new replies allowed.