1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00
freebsd/usr.sbin/pppd/args.h
1997-02-22 16:15:28 +00:00

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