mirror of
git://git.sv.gnu.org/coreutils
synced 2026-05-11 09:29:34 -04:00
10 lines
191 B
C
10 lines
191 B
C
#ifndef PARAMS
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
|
# define PARAMS(Args) Args
|
|
# else
|
|
# define PARAMS(Args) ()
|
|
# endif
|
|
#endif
|
|
|
|
char *xreadlink PARAMS ((char const *));
|