1994-09-25 02:11:26 +00:00
|
|
|
/*
|
|
|
|
* neat macro from ka9q to "do the right thing" with ansi prototypes
|
1997-01-14 07:20:47 +00:00
|
|
|
* $FreeBSD$
|
1994-09-25 02:11:26 +00:00
|
|
|
*/
|
|
|
|
|
1996-03-01 19:29:44 +00:00
|
|
|
#ifndef __P
|
1994-09-25 02:11:26 +00:00
|
|
|
#ifdef __STDC__
|
1996-03-01 19:29:44 +00:00
|
|
|
#define __P(x) x
|
1994-09-25 02:11:26 +00:00
|
|
|
#else
|
1996-03-01 19:29:44 +00:00
|
|
|
#define __P(x) ()
|
1994-09-25 02:11:26 +00:00
|
|
|
#endif
|
|
|
|
#endif
|