OLD | NEW |
---|---|
1 | |
2 /* | 1 /* |
3 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
4 * | 3 * |
5 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
7 */ | 6 */ |
8 | 7 |
9 | |
10 #include "SkTypes.h" | |
11 | |
12 #include <stdarg.h> | 8 #include <stdarg.h> |
reed1
2015/06/24 23:20:31
This one seems odd -- where is the declaration for
bungeman-skia
2015/06/25 14:45:06
You're right, iwyu actually though that we didn't
| |
13 #include <stdio.h> | 9 #include <stdio.h> |
14 | 10 |
15 void SkDebugf(const char format[], ...) { | 11 void SkDebugf(const char format[], ...) { |
16 va_list args; | 12 va_list args; |
17 va_start(args, format); | 13 va_start(args, format); |
18 vfprintf(stderr, format, args); | 14 vfprintf(stderr, format, args); |
19 va_end(args); | 15 va_end(args); |
20 } | 16 } |
OLD | NEW |