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