* src/system.h: Use canonical definition for PARAMS (avoids clash with macro from hash.h).

This commit is contained in:
Tim Van Holder
2002-01-11 15:27:54 +00:00
parent a10778dc32
commit e1dd105c0a

View File

@@ -81,10 +81,12 @@ char *alloca ();
# endif # endif
#endif #endif
#if PROTOTYPES #ifndef PARAMS
# define PARAMS(p) p # if defined PROTOTYPES || defined __STDC__
#else # define PARAMS(Args) Args
# define PARAMS(p) () # else
# define PARAMS(Args) ()
# endif
#endif #endif
# include "xalloc.h" # include "xalloc.h"