Commit c928a49a c928a49a8bb48ece37fc3d17610d8a6fe43ef8d9 by Sergey Poznyakoff

Define __P() if necessary.

1 parent 2c58138c
......@@ -76,6 +76,14 @@ char *alloca ();
#include "argp-fmtstream.h"
#include "argp-namefrob.h"
#ifndef __P
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
# define __P(Args) Args
# else
# define __P(Args) ()
# endif
#endif
#if !HAVE_DECL_STRCHRNUL
extern char *strchrnul __P((const char *s, int c_in));
#endif
......