1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

Don't define __CORRECT_ISO_CPP_STRING_H_PROTO for non-GCC compilers (bug 17631)

The implementation of __CORRECT_ISO_CPP_STRING_H_PROTO requires
support for asm aliases.
This commit is contained in:
Andreas Schwab
2014-12-10 11:28:51 +01:00
parent 85b290451e
commit 8e2e833ac4
4 changed files with 16 additions and 16 deletions

View File

@ -31,12 +31,8 @@ __BEGIN_DECLS
#define __need_NULL
#include <stddef.h>
/* Provide correct C++ prototypes, and indicate this to the caller. This
requires a compatible C++ standard library. As a heuristic, we provide
these when the compiler indicates full conformance with C++98 or later,
and for older GCC versions that are known to provide a compatible
libstdc++. */
#if defined __cplusplus && (__cplusplus >= 199711L || __GNUC_PREREQ (4, 4))
/* Tell the caller that we provide correct C++ prototypes. */
#if defined __cplusplus && __GNUC_PREREQ (4, 4)
# define __CORRECT_ISO_CPP_STRING_H_PROTO
#endif