1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-16 08:38:48 +02:00
Files
coreutils/lib/path-concat.h

16 lines
307 B
C
Raw Normal View History

1997-12-21 11:22:51 +00:00
#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
1996-08-19 01:41:53 +00:00
char *
1997-12-21 11:22:51 +00:00
path_concat PARAMS ((const char *dir, const char *base, char **base_in_result));
#endif