mirror of
https://git.savannah.gnu.org/git/tar.git
synced 2026-04-20 00:20:55 +00:00
10 lines
195 B
C
10 lines
195 B
C
#ifndef PARAMS
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
|
# define PARAMS(Args) Args
|
|
# else
|
|
# define PARAMS(Args) ()
|
|
# endif
|
|
#endif
|
|
|
|
char *base_name PARAMS ((char const *name));
|