X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/ff4a34be273490d08c7b34a51e309a76c5b2c127..eeeb962b:/lib/quote.h diff --git a/lib/quote.h b/lib/quote.h index 96549b76..5de896bd 100644 --- a/lib/quote.h +++ b/lib/quote.h @@ -1,4 +1,12 @@ /* prototypes for quote.c */ -char const *quote_n (int n, char const *name); -char const *quote (char const *name); +#ifndef PARAMS +# if defined PROTOTYPES || (defined __STDC__ && __STDC__) +# define PARAMS(Args) Args +# else +# define PARAMS(Args) () +# endif +#endif + +char const *quote_n PARAMS ((int n, char const *name)); +char const *quote PARAMS ((char const *name));