diff options
author | Mark Brown <broonie@kernel.org> | 2019-07-24 19:00:06 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-07-24 19:00:06 +0300 |
commit | 27988c96687667e74df1a9a3b8662519bc1c29c9 (patch) | |
tree | 0aa67d365e8d544bf48a4de9ae94d7f8536de073 /tools/perf/util/demangle-java.c | |
parent | 8f46e22b5ac692b48d04bb722547ca17b66dda02 (diff) | |
parent | 5f9e832c137075045d15cd6899ab0505cfb2ca4b (diff) | |
download | linux-27988c96687667e74df1a9a3b8662519bc1c29c9.tar.xz |
Merge tag 'v5.3-rc1' into regulator-5.3
Linus 5.3-rc1
Diffstat (limited to 'tools/perf/util/demangle-java.c')
-rw-r--r-- | tools/perf/util/demangle-java.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/perf/util/demangle-java.c b/tools/perf/util/demangle-java.c index e4c486756053..763328c151e9 100644 --- a/tools/perf/util/demangle-java.c +++ b/tools/perf/util/demangle-java.c @@ -1,14 +1,15 @@ // SPDX-License-Identifier: GPL-2.0 #include <sys/types.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> -#include "util.h" #include "debug.h" #include "symbol.h" #include "demangle-java.h" -#include "sane_ctype.h" +#include <linux/ctype.h> +#include <linux/kernel.h> enum { MODE_PREFIX = 0, |