michael@0: michael@0: /* michael@0: * Copyright 2006 The Android Open Source Project michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: michael@0: #include "SkTypes.h" michael@0: michael@0: #include michael@0: #include michael@0: michael@0: void SkDebugf(const char format[], ...) { michael@0: va_list args; michael@0: va_start(args, format); michael@0: vfprintf(stderr, format, args); michael@0: va_end(args); michael@0: }