NetBSD/usr.sbin/pppd/args.h

13 lines
235 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
* $Id: args.h,v 1.2 1993/11/10 01:33:54 paulus Exp $
1993-08-14 10:29:28 +04:00
*/
#ifndef __ARGS
#ifdef __STDC__
#define __ARGS(x) x
#else
#define __ARGS(x) ()
#endif
#endif