[PATCH] D11948: Add some macros to abstract marking of parameters as "not null", and use them in <cstring>

Marshall Clow via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 11 12:08:28 PDT 2015


mclow.lists added inline comments.

================
Comment at: include/cstring:96
@@ +95,3 @@
+int strncmp(const char* __s1, const char* __s2, size_t __n)
+{ return ::memcmp(__s1, __s2, __n); }
+
----------------
nlopes wrote:
> typo here.
Oops. Thanks!


http://reviews.llvm.org/D11948





More information about the cfe-commits mailing list