mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
13 lines
180 B
C
13 lines
180 B
C
/*
|
|
* neat macro from ka9q to "do the right thing" with ansi prototypes
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef __P
|
|
#ifdef __STDC__
|
|
#define __P(x) x
|
|
#else
|
|
#define __P(x) ()
|
|
#endif
|
|
#endif
|