diff options
Diffstat (limited to 'usr.sbin/pppd/args.h')
| -rw-r--r-- | usr.sbin/pppd/args.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/usr.sbin/pppd/args.h b/usr.sbin/pppd/args.h new file mode 100644 index 000000000000..e8798382786b --- /dev/null +++ b/usr.sbin/pppd/args.h @@ -0,0 +1,12 @@ +/* + * neat macro from ka9q to "do the right thing" with ansi prototypes + * $Id: args.h,v 1.1 1993/11/11 03:54:25 paulus Exp $ + */ + +#ifndef __ARGS +#ifdef __STDC__ +#define __ARGS(x) x +#else +#define __ARGS(x) () +#endif +#endif |
