Remove g_snprintf() and g_vsnprintf(), since they are already declared in

2005-09-26  Matthias Clasen  <mclasen@redhat.com>

	* glib/gprintf.h: Remove g_snprintf() and g_vsnprintf(), since
	they are already declared in glib.h. This doesn't break documented
	use of gprintf.h, but should probably be pointed out in the
	release notes for 2.10. (#314232, Behdad Esfahbod)
This commit is contained in:
Matthias Clasen
2005-09-26 14:33:00 +00:00
committed by Matthias Clasen
parent 85cb6bc485
commit 5b60a98d99
5 changed files with 33 additions and 22 deletions

View File

@@ -33,10 +33,6 @@ gint g_fprintf (FILE *file,
gint g_sprintf (gchar *string,
gchar const *format,
...) G_GNUC_PRINTF (2, 3);
gint g_snprintf (gchar *string,
gulong n,
gchar const *format,
...) G_GNUC_PRINTF (3, 4);
gint g_vprintf (gchar const *format,
va_list args);
@@ -46,10 +42,6 @@ gint g_vfprintf (FILE *file,
gint g_vsprintf (gchar *string,
gchar const *format,
va_list args);
gint g_vsnprintf (gchar *string,
gulong n,
gchar const *format,
va_list args);
gint g_vasprintf (gchar **string,
gchar const *format,
va_list args);