1993-08-14 10:29:28 +04:00
|
|
|
/*
|
|
|
|
* neat macro from ka9q to "do the right thing" with ansi prototypes
|
1993-11-10 04:33:51 +03:00
|
|
|
* $Id: args.h,v 1.2 1993/11/10 01:33:54 paulus Exp $
|
1993-08-14 10:29:28 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARGS
|
|
|
|
#ifdef __STDC__
|
|
|
|
#define __ARGS(x) x
|
|
|
|
#else
|
|
|
|
#define __ARGS(x) ()
|
|
|
|
#endif
|
|
|
|
#endif
|