X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fbasename.c;h=f2babbee23fa232e4b7f1c3339110dcd5b0ca4ed;hb=226d63000a25c5f20ceecd610457b32d867909c7;hp=e648b1a7e251bde1faabae3061fcd70f8ae2d021;hpb=cd988caa7e078e616f1f411197b4ea9b5208c00e;p=gnulib.git diff --git a/lib/basename.c b/lib/basename.c index e648b1a7e..f2babbee2 100644 --- a/lib/basename.c +++ b/lib/basename.c @@ -23,10 +23,20 @@ # define FILESYSTEM_PREFIX_LEN(Filename) 0 #endif +#ifndef PARAMS +# if defined PROTOTYPES || (defined __STDC__ && __STDC__) +# define PARAMS(Args) Args +# else +# define PARAMS(Args) () +# endif +#endif + #ifndef ISSLASH # define ISSLASH(C) ((C) == '/') #endif +char *base_name PARAMS ((char const *name)); + /* In general, we can't use the builtin `basename' function if available, since it has different meanings in different environments. In some environments the builtin `basename' modifies its argument.