Marc Tardif <intm...@cam.org> writes: > At first, I simply considered the "__P" as a syntax convention. But, then > again, this kind of syntax has to be defined somewhere. I've looked all > over the place but can't seem to put the finger on the source of this > syntax.
It's in <sys/cdefs.h>: #if defined(__STDC__) || defined(__cplusplus) #define __P(protos) protos /* full-blown ANSI C */ [ ... ] #else /* !(__STDC__ || __cplusplus) */ #define __P(protos) () /* traditional C preprocessor */ > If anyone could point me in the right direction, and maybe even show me > how I could've found the answer myself, I'd appreciate. grep? /assar To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-hackers" in the body of the message