diff options
| author | Aayush Gupta <aayushgupta219@gmail.com> | 2020-09-18 09:15:40 +0000 |
|---|---|---|
| committer | Nolen Johnson <johnsonnolen@gmail.com> | 2020-12-23 16:27:26 -0500 |
| commit | 5424d063c1a5b45bd62d1b8febe62b52035ad16e (patch) | |
| tree | 17d22f0cbaa7bdbf895df5ac2197a9b94dbe875b | |
| parent | b7a4cddd3f93ceed6131f632c1f0fcb721245e58 (diff) | |
lake: gpt-utils: Drop include for stdio.h
Required macros are already defined in kernel now, and due to use of
generated_kernel_headers, these gives conflict when compiled, hence drop
this include and use kernel side declaration
Test: libgptutils.motorola_sdm660 compiles without any issues after this drop
Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
Change-Id: I3edb0826bbac1dc2919bbb049b1e8956d0e1a8d7
| -rw-r--r-- | gpt-utils/gpt-utils.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gpt-utils/gpt-utils.cpp b/gpt-utils/gpt-utils.cpp index 130fec4..5063037 100644 --- a/gpt-utils/gpt-utils.cpp +++ b/gpt-utils/gpt-utils.cpp @@ -32,7 +32,6 @@ /****************************************************************************** * INCLUDE SECTION ******************************************************************************/ -#include <stdio.h> #include <fcntl.h> #include <string.h> #include <errno.h> |
