* 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
#if PROTOTYPES
# define PARAMS(p) p
#else
# define PARAMS(p) ()
#ifndef PARAMS
# if defined PROTOTYPES || defined __STDC__
# define PARAMS(Args) Args
# else
# define PARAMS(Args) ()
# endif
#endif
# include "xalloc.h"