Revert changes inadvertantly committed
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@238880 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
22f6c0532d
commit
b957bac1da
@ -67,34 +67,15 @@ size_t strlen(const char* s);
|
|||||||
_LIBCPP_BEGIN_NAMESPACE_STD
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
||||||
|
|
||||||
using ::size_t;
|
using ::size_t;
|
||||||
|
using ::memcpy;
|
||||||
// using ::memcpy;
|
using ::memmove;
|
||||||
inline _LIBCPP_INLINE_VISIBILITY
|
|
||||||
void* memcpy(void* __s1, const void* __s2, size_t __n) __attribute__((nonnull(1, 2)))
|
|
||||||
{ return ::memcpy(__s1, __s2, __n); }
|
|
||||||
|
|
||||||
// using ::memmove;
|
|
||||||
inline _LIBCPP_INLINE_VISIBILITY
|
|
||||||
void* memmove(void* __s1, const void* __s2, size_t __n) __attribute__((nonnull(1, 2)))
|
|
||||||
{ return ::memmove(__s1, __s2, __n); }
|
|
||||||
|
|
||||||
using ::strcpy;
|
using ::strcpy;
|
||||||
using ::strncpy;
|
using ::strncpy;
|
||||||
using ::strcat;
|
using ::strcat;
|
||||||
using ::strncat;
|
using ::strncat;
|
||||||
|
using ::memcmp;
|
||||||
// using ::memcmp;
|
|
||||||
inline _LIBCPP_INLINE_VISIBILITY
|
|
||||||
int memcmp(const void* __s1, const void* __s2, size_t __n) __attribute__((nonnull(1, 2)))
|
|
||||||
{ return ::memcmp(__s1, __s2, __n); }
|
|
||||||
|
|
||||||
using ::strcmp;
|
using ::strcmp;
|
||||||
|
using ::strncmp;
|
||||||
// using ::strncmp;
|
|
||||||
inline _LIBCPP_INLINE_VISIBILITY
|
|
||||||
int strncmp(const char* __s1, const char* __s2, size_t __n) __attribute__((nonnull(1, 2)))
|
|
||||||
{ return ::memcmp(__s1, __s2, __n); }
|
|
||||||
|
|
||||||
using ::strcoll;
|
using ::strcoll;
|
||||||
using ::strxfrm;
|
using ::strxfrm;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user