xref: /haiku/src/kits/package/hpkg/StandardErrorOutput.cpp (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * Copyright 2009-2013, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <package/hpkg/StandardErrorOutput.h>
8 
9 #include <stdio.h>
10 
11 
12 namespace BPackageKit {
13 
14 namespace BHPKG {
15 
16 
17 void
18 BStandardErrorOutput::PrintErrorVarArgs(const char* format, va_list args)
19 {
20 	vfprintf(stderr, format, args);
21 }
22 
23 
24 }	// namespace BHPKG
25 
26 }	// namespace BPackageKit
27