Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'eglib/src/goutput.c')
-rw-r--r--eglib/src/goutput.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/eglib/src/goutput.c b/eglib/src/goutput.c
index cd2f87f3e51..3a12201735e 100644
--- a/eglib/src/goutput.c
+++ b/eglib/src/goutput.c
@@ -90,3 +90,13 @@ g_log (const gchar *log_domain, GLogLevelFlags log_level, const gchar *format, .
va_end (args);
}
+void
+g_assertion_message (const gchar *format, ...)
+{
+ va_list args;
+
+ va_start (args, format);
+ g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR, format, args);
+ va_end (args);
+}
+