* lib/quote.h (PARAMS): New macro. Use it.

This commit is contained in:
Akim Demaille
2000-10-20 09:22:45 +00:00
parent f1320c03a4
commit 77aee78982
9 changed files with 879 additions and 867 deletions

View File

@@ -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));