Subversion Repositories Kolibri OS

Rev

Rev 8687 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8687 turbocat 1
 
2
#include 
3
#include 
4
5
 
6
{
7
	int ret;
8
	va_list ap;
9
	va_start(ap, fmt);
10
	ret = vfprintf(f, fmt, ap);
11
	va_end(ap);
12
	return ret;
13
}
14