diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2015-04-22 10:05:16 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2015-04-22 10:05:16 +0200 |
commit | 84e4cb880afd04de3693a7b61f53aa91c575b101 (patch) | |
tree | c6acd7101fa569e168e47f7507297dae746deaa7 /newlib/libc | |
parent | 8154d0d4ca4033d30e65cf30ff78d4fbc4ed2091 (diff) | |
download | cygnal-84e4cb880afd04de3693a7b61f53aa91c575b101.tar.gz cygnal-84e4cb880afd04de3693a7b61f53aa91c575b101.tar.bz2 cygnal-84e4cb880afd04de3693a7b61f53aa91c575b101.zip |
Fix basename prototype collision string.h vs libgen.h
* libc/include/libgen.h (basename): Drop defining _BASENAME_DEFINED.
Always define macro basename. Add comment to explain why.
* libc/include/string.h (basename): Check for basename instead of
_BASENAME_DEFINED. Drop __GNUC__ branch, always use basename macro.
Change comment to explain why. Add nonnull function attribute.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/include/libgen.h | 14 | ||||
-rw-r--r-- | newlib/libc/include/string.h | 24 |
2 files changed, 26 insertions, 12 deletions
diff --git a/newlib/libc/include/libgen.h b/newlib/libc/include/libgen.h index 8360a22f9..de70b5b2f 100644 --- a/newlib/libc/include/libgen.h +++ b/newlib/libc/include/libgen.h @@ -12,8 +12,20 @@ extern "C" { #endif +/* There are two common basename variants. If you do NOT #include <libgen.h> + and you do + + #define _GNU_SOURCE + #include <string.h> + + you get the GNU version. Otherwise you get the POSIX versionfor which you + should #include <libgen.h>i for the function prototype. POSIX requires that + #undef basename will still let you invoke the underlying function. However, + this also implies that the POSIX version is used in this case. That's made + sure here. */ +#undef basename +#define basename basename char *_EXFUN(basename, (char *)); -#define _BASENAME_DEFINED char *_EXFUN(dirname, (char *)); #ifdef __cplusplus diff --git a/newlib/libc/include/string.h b/newlib/libc/include/string.h index 9e11e5c51..92e08aebc 100644 --- a/newlib/libc/include/string.h +++ b/newlib/libc/include/string.h @@ -163,18 +163,20 @@ int _EXFUN(strtosigno, (const char *__name)); (char *) memcpy (__out, __in, __len-1);})) #endif /* _GNU_SOURCE && __GNUC__ */ -/* There are two common basename variants. If you #include <libgen.h> - first, you get the POSIX version; otherwise you get the GNU version. - POSIX requires that #undef basename will still let you - invoke the underlying function, but that requires gcc support. */ -#if __GNU_VISIBLE && !defined(_BASENAME_DEFINED) -# ifdef __GNUC__ -char *_EXFUN(basename,(const char *)) - __asm__ (__ASMNAME ("__gnu_basename")) __nonnull(1); -# else -char *_EXFUN(__gnu_basename,(const char *)); +/* There are two common basename variants. If you do NOT #include <libgen.h> + and you do + + #define _GNU_SOURCE + #include <string.h> + + you get the GNU version. Otherwise you get the POSIX versionfor which you + should #include <libgen.h>i for the function prototype. POSIX requires that + #undef basename will still let you invoke the underlying function. However, + this also implies that the POSIX version is used in this case. That's made + sure here. */ +#if __GNU_VISIBLE && !defined(basename) +char *_EXFUN(__nonnull (1) __gnu_basename,(const char *)); # define basename __gnu_basename -# endif #endif #include <sys/string.h> |