NetBSD/usr.sbin/pppd/args.h

12 lines
181 B
C
Raw Normal View History

1993-08-14 10:29:28 +04:00
/*
* neat macro from ka9q to "do the right thing" with ansi prototypes
*/
#ifndef __ARGS
#ifdef __STDC__
#define __ARGS(x) x
#else
#define __ARGS(x) ()
#endif
#endif