Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Anoop C S <anoopcs@samba.org>
Reviewed-by: Shwetha K Acharya <Shwetha.K.Acharya@ibm.com>
Autobuild-User(master): Anoop C S <anoopcs@samba.org>
Autobuild-Date(master): Tue Aug 5 07:09:04 UTC 2025 on atb-devel-224
#define LargestIntegralType unsigned long long
#define NULL (void *)0
+#define bool unsigned int
+#define true 1
+#define false 0
/* size_t is already defined by Coverity */
void _assert_true(const LargestIntegralType result,
{
__coverity_panic__();
}
+
+/***********************************************************
+ * SAMBA
+ ***********************************************************/
+
+/* ./lib/util */
+
+bool strequal(const char *a, const char *b)
+{
+ /* Require NUL-terminated arguments */
+ __coverity_string_null_sink__(a);
+ __coverity_string_null_sink__(b);
+
+ return true;
+}