diff options
author | Mark Salyzyn <salyzyn@google.com> | 2018-11-13 07:35:21 -0800 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2018-11-13 10:57:28 -0800 |
commit | 68a3bcc249b04394b73991c5272aa0ae4bde7676 (patch) | |
tree | 1198b5a3d89086b82223d8ee7271d215643c03a3 /tests/stdio_ext_test.cpp | |
parent | c2d3e67a77fe284e8f8f1ae4dd4a67a669bfd644 (diff) |
bionic tests: switch to using android-base/file.h for TemporaryFile
A matching definition of TemporaryFile exists in libbase now.
Test: compile
Bug: 119313545
Change-Id: I6f84dbf3af9a9c4b270a2532a36c9cb4c0f6bb8f
Diffstat (limited to 'tests/stdio_ext_test.cpp')
-rw-r--r-- | tests/stdio_ext_test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/stdio_ext_test.cpp b/tests/stdio_ext_test.cpp index d4616ef5f..d84fda0c9 100644 --- a/tests/stdio_ext_test.cpp +++ b/tests/stdio_ext_test.cpp @@ -29,7 +29,8 @@ #include <wchar.h> #include <locale.h> -#include "TemporaryFile.h" +#include <android-base/file.h> + #include "utils.h" TEST(stdio_ext, __fbufsize) { |