X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fpath-concat.h;h=8e2c228831d65cff46539c77a60ee75f71fe7925;hb=8d49f90d69a06c652c97d38f417ffb42e6e48214;hp=0a19f053a8cd003f753dc83dd9e38acc17bc8a2f;hpb=8ddb64cf1508f8f7d64d1e23285a7ce6f2bbd7fd;p=gnulib.git diff --git a/lib/path-concat.h b/lib/path-concat.h index 0a19f053a..8e2c22883 100644 --- a/lib/path-concat.h +++ b/lib/path-concat.h @@ -1,9 +1,15 @@ -#if __STDC__ -# undef __P -# define __P(args) args -#else -# define __P(args) () -#endif +#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 _P ((const char *dir, const char *base, char **base_in_result)); +path_concat PARAMS ((const char *dir, const char *base, char **base_in_result)); + +#endif