]> 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:22:28 +0000 (16:22 -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 f4df772acca721d6195de64261442b7484c0d968..a9d4c64b928904c9058e43f8da1e722814d58a77 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 (f_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_