diff src/util.c @ 10636:0f5c5e6fb27f

[gaim-migrate @ 12118] The strftime warnings fiunally got to me, so I made gaim_strftime to work around it. Turns out KingAnt had already discovered this solution for oscar.c but left it #iffed out. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Thu, 24 Feb 2005 01:11:17 +0000
parents 14c32196fcfd
children 9505695acff8
line wrap: on
line diff
--- a/src/util.c	Wed Feb 23 23:39:59 2005 +0000
+++ b/src/util.c	Thu Feb 24 01:11:17 2005 +0000
@@ -573,6 +573,10 @@
 	return retval;
 }
 
+size_t gaim_strftime(char *s, size_t max, const char *format, const struct tm *tm)
+{
+	return strftime(s, max, format, tm);
+}
 
 /**************************************************************************
  * Markup Functions