diff options
| author | 2018-07-28 14:42:16 -0400 | |
|---|---|---|
| committer | 2018-08-01 00:16:54 -0400 | |
| commit | 83c3ae8be87463486239246a93f9dadf5d2b27bd (patch) | |
| tree | eabdc536609b8787348bfda923c06000e3f40aeb /src/core/crypto | |
| parent | Update mbedtls and fix compile error (diff) | |
| download | yuzu-83c3ae8be87463486239246a93f9dadf5d2b27bd.tar.gz yuzu-83c3ae8be87463486239246a93f9dadf5d2b27bd.tar.xz yuzu-83c3ae8be87463486239246a93f9dadf5d2b27bd.zip | |
Add missing string.h include
Diffstat (limited to 'src/core/crypto')
| -rw-r--r-- | src/core/crypto/ctr_encryption_layer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/crypto/ctr_encryption_layer.cpp b/src/core/crypto/ctr_encryption_layer.cpp index 8799496e2..6a0d396ed 100644 --- a/src/core/crypto/ctr_encryption_layer.cpp +++ b/src/core/crypto/ctr_encryption_layer.cpp | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <string.h> | ||
| 5 | #include "common/assert.h" | 6 | #include "common/assert.h" |
| 6 | #include "core/crypto/ctr_encryption_layer.h" | 7 | #include "core/crypto/ctr_encryption_layer.h" |
| 7 | 8 | ||