mirror of
https://github.com/opnsense/src.git
synced 2026-03-16 15:48:26 -04:00
Add support for negotiating (more like "informing peer") about DNS. Various cleanup of warnings.
12 lines
227 B
C
12 lines
227 B
C
/*
|
|
* neat macro from ka9q to "do the right thing" with ansi prototypes
|
|
* $Id: args.h,v 1.2 1994/09/25 02:31:51 wollman Exp $
|
|
*/
|
|
|
|
#ifndef __P
|
|
#ifdef __STDC__
|
|
#define __P(x) x
|
|
#else
|
|
#define __P(x) ()
|
|
#endif
|
|
#endif
|