mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-03-22 13:00:43 +02:00
10 lines
170 B
C
10 lines
170 B
C
#if __STDC__
|
|
# undef __P
|
|
# define __P(args) args
|
|
#else
|
|
# define __P(args) ()
|
|
#endif
|
|
|
|
char *
|
|
path_concat __P ((const char *dir, const char *base, char **base_in_result));
|