+//
+// C equivalents for some basic uses
+//
+extern "C" {
+ int __security_debugging(const char *scope);
+ void __security_debug(const char *scope, const char *format, ...);
+};
+
+int __security_debugging(const char *scope)
+{ return debugging(scope); }
+
+void __security_debug(const char *scope, const char *format, ...)
+{
+#if !defined(NDEBUG_CODE)
+ va_list args;
+ va_start(args, format);
+ vdebug(scope, format, args);
+ va_end(args);
+#endif
+}
+
+