Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!usc!samsung!uunet!tekbspa!tss.com!yost From: yost@tss.com (Dave Yost) Newsgroups: comp.lang.c Subject: ANSI-compatible function declarations with args Message-ID: <1991Mar27.011212.5929@tss.com> Date: 27 Mar 91 01:12:12 GMT Sender: news@tss.com (USENET Network News) Reply-To: yost@tss.COM Organization: Teknekron Software Systems, Inc. Lines: 16 See this: #ifdef __ANSI__ && !defined (PROTO) #define PROTO #endif #undef decl_args #ifdef PROTO #define decl_args(x) x #else #define decl_args(x) () #endif Are there any standards for what to call this 'decl_args' macro? --dave yost