blob: e506a2555587ba26068c1753bcbe694ddeefb28d (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef PARAMS
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
# define PARAMS(Args) Args
# else
# define PARAMS(Args) ()
# endif
#endif
char *xreadlink PARAMS ((char const *));
|