38 lines
910 B
Diff
38 lines
910 B
Diff
From 50a4636886c958717213856132fcbb57c3b8ea2a Mon Sep 17 00:00:00 2001
|
|
From: Sonny Sasaka <sonnysasaka@chromium.org>
|
|
Date: Fri, 19 Mar 2021 16:18:07 -0700
|
|
Subject: [PATCH] Add missing includes
|
|
|
|
---
|
|
base/hash/md5.cc | 1 +
|
|
crypto/p224_spake.cc | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
diff --git a/libchrome/base/hash/md5.cc b/libchrome/base/hash/md5.cc
|
|
index bdb9990a9..ef8954eaf 100644
|
|
--- a/libchrome/base/hash/md5.cc
|
|
+++ b/libchrome/base/hash/md5.cc
|
|
@@ -24,6 +24,7 @@
|
|
#include "base/hash/md5.h"
|
|
|
|
#include <stddef.h>
|
|
+#include <string.h>
|
|
|
|
namespace {
|
|
|
|
diff --git a/libchrome/crypto/p224_spake.cc b/libchrome/crypto/p224_spake.cc
|
|
index 157410537..de0af5466 100644
|
|
--- a/libchrome/crypto/p224_spake.cc
|
|
+++ b/libchrome/crypto/p224_spake.cc
|
|
@@ -8,6 +8,7 @@
|
|
#include <crypto/p224_spake.h>
|
|
|
|
#include <algorithm>
|
|
+#include <string.h>
|
|
|
|
#include <base/logging.h>
|
|
#include <crypto/p224.h>
|
|
--
|
|
2.20.1
|
|
|