X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fargp-namefrob.h;h=f10f58297bb43686e8d0f9e50877e287932cb55f;hb=4c399534696c5acbe5ecb57c40f2b5841cb8320d;hp=98c57a70b7332157b69d2cc65f9c53f7f4f55c18;hpb=3d31309ac974f4f227a75584570ab77b22ede6d6;p=gnulib.git diff --git a/lib/argp-namefrob.h b/lib/argp-namefrob.h index 98c57a70b..f10f58297 100644 --- a/lib/argp-namefrob.h +++ b/lib/argp-namefrob.h @@ -141,14 +141,21 @@ # define putchar_unlocked(x) putchar (x) # endif -extern char *__argp_basename (char *name); - #endif /* !_LIBC */ #ifndef __set_errno #define __set_errno(e) (errno = (e)) #endif +#if defined GNULIB_ARGP_DISABLE_DIRNAME +# define __argp_base_name(arg) arg +#elif defined GNULIB_ARGP_EXTERN_BASENAME +extern char *__argp_base_name(const char *arg); +#else +# include "dirname.h" +# define __argp_base_name base_name +#endif + #if defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME # define __argp_short_program_name() (program_invocation_short_name) #else