diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2016-03-17 13:27:04 -0400 |
---|---|---|
committer | Dan Sinclair <dsinclair@chromium.org> | 2016-03-17 13:27:04 -0400 |
commit | 900323a8857ce0d9f6a57e535cd864b0f649bb9c (patch) | |
tree | f071a0b61a1fa058bd7ece45c670154359926794 | |
parent | 4fdbf0b30ad54705cc2a0ee289f13e40ce123bdf (diff) | |
download | pdfium-900323a8857ce0d9f6a57e535cd864b0f649bb9c.tar.xz |
Fix pdf_use_skia=1 on mac.
Add missing stdarg.h file so mac can build with skia.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1813633002 .
-rw-r--r-- | skia/ext/google_logging.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/skia/ext/google_logging.cc b/skia/ext/google_logging.cc index c0ddd99c0e..99061672e7 100644 --- a/skia/ext/google_logging.cc +++ b/skia/ext/google_logging.cc @@ -6,6 +6,7 @@ // for Skia SkASSERT. If you don't want this, you can link with another file // that provides integration with the logging of your choice. +#include <stdarg.h> #include <stdio.h> #include "third_party/skia/include/core/SkTypes.h" |