Remove fx_system.h include from some headers.
Directly include system headers like <stdint.h> instead.
Change-Id: Ie97e9025570575f634273dd6b073ba90dc554ad2
Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/82712
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
diff --git a/core/fxcrt/widestring.cpp b/core/fxcrt/widestring.cpp
index a69658a..277cbbc 100644
--- a/core/fxcrt/widestring.cpp
+++ b/core/fxcrt/widestring.cpp
@@ -7,6 +7,7 @@
#include "core/fxcrt/widestring.h"
#include <stddef.h>
+#include <string.h>
#include <algorithm>
#include <cctype>
@@ -15,6 +16,7 @@
#include "core/fxcrt/fx_codepage.h"
#include "core/fxcrt/fx_extension.h"
#include "core/fxcrt/fx_safe_types.h"
+#include "core/fxcrt/fx_system.h"
#include "core/fxcrt/string_pool_template.h"
#include "third_party/base/check.h"
#include "third_party/base/check_op.h"