diff options
| author | Aayush Gupta <aayushgupta219@gmail.com> | 2020-09-18 09:15:40 +0000 |
|---|---|---|
| committer | Joshua Blanchard <joshua.lee.bbg@gmail.com> | 2021-01-14 01:05:27 +0100 |
| commit | 01223d654a6cfc4b3edc9b17d7d18c80fb221a4c (patch) | |
| tree | 4d3b2ed6e9b1f4939fa902650ba834799ed0844c | |
| parent | 900185171f366466bfa607aa40618f1a91e3bbfc (diff) | |
evert: 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> |
