diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-03-07 18:05:08 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-03-07 18:05:08 +0000 |
commit | b9cf393e84a5f0e6dd6f570e4027b5d0c205f982 (patch) | |
tree | 94d8c85894574ca31655faa05bda2d6f3e4e8a4b /include | |
parent | 848fa2bf7553fd923dc123397b4568f3f6f281ca (diff) |
Add missing #include <stdarg.h> to SkString.h (fix Android build)
git-svn-id: http://skia.googlecode.com/svn/trunk@8021 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkString.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/core/SkString.h b/include/core/SkString.h index e5a2d303fc..743f07889d 100644 --- a/include/core/SkString.h +++ b/include/core/SkString.h @@ -12,6 +12,8 @@ #include "SkScalar.h" +#include <stdarg.h> + /* Some helper functions for C strings */ |