]> Kevux Git Server - fll/commitdiff
Update: disable BUG_strnlen by default
authorKevin Day <thekevinday@gmail.com>
Sun, 21 Jul 2019 21:04:35 +0000 (16:04 -0500)
committerKevin Day <thekevinday@gmail.com>
Sun, 21 Jul 2019 21:05:49 +0000 (16:05 -0500)
This bug might actually be a bug related to uClibc.
Just disable it by default for now.
Future versions may remove this workaound entirely.

level_0/f_strings/c/strings.h

index 036fe5dad1a64dcb1aa1aedc12fa52cbe7144227..46a03f88788d665ca2dc215fb7c2a836cf874d00 100644 (file)
@@ -24,9 +24,9 @@ extern "C"{
 
 // BUG: for whatever reason strnlen is considered not included with -Wall, even with __USE_GNU defined
 //      therefore this gets defined here
-#ifndef _di_BUG_strnlen_
+#ifdef _en_BUG_strnlen_
   f_extern size_t strnlen (const char *string, size_t max_length);
-#endif // _di_BUG_strnlen_
+#endif // _en_BUG_strnlen_
 
 // Define the end of string character
 #ifndef _di_f_have_eos_