freebsd-dev/usr.sbin/pppd/args.h

13 lines
227 B
C
Raw Normal View History

1994-09-25 02:11:26 +00:00
/*
* 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 $
1994-09-25 02:11:26 +00:00
*/
#ifndef __P
1994-09-25 02:11:26 +00:00
#ifdef __STDC__
#define __P(x) x
1994-09-25 02:11:26 +00:00
#else
#define __P(x) ()
1994-09-25 02:11:26 +00:00
#endif
#endif