mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-13 03:44:26 +08:00
16 lines
307 B
C
16 lines
307 B
C
#if ! defined PATH_CONCAT_H_
|
|
# define PATH_CONCAT_H_
|
|
|
|
# ifndef PARAMS
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
|
# define PARAMS(Args) Args
|
|
# else
|
|
# define PARAMS(Args) ()
|
|
# endif
|
|
# endif
|
|
|
|
char *
|
|
path_concat PARAMS ((const char *dir, const char *base, char **base_in_result));
|
|
|
|
#endif
|