diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-08-20 17:01:38 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-08-20 17:03:05 +0200 |
commit | 6e98bc349ea4219e21785d85809b10bd49e722df (patch) | |
tree | df0bc08488bc60e7d650085400be5ed761f26c2d | |
parent | Merge tag 'perf-core-for-mingo-5.4-20190816' of git://git.kernel.org/pub/scm/... (diff) | |
download | linux-6e98bc349ea4219e21785d85809b10bd49e722df.tar.xz linux-6e98bc349ea4219e21785d85809b10bd49e722df.zip |
tools headers: Add limits.h to access __WORDSIZE
We need to make sure limits.h is included before checking if we can use
__WORDSIZE, do it.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lkml.kernel.org/n/tip-5yfoed4rnsck2n3cwhm9mvth@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/include/linux/bitops.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/include/linux/bitops.h b/tools/include/linux/bitops.h index 0b0ef3abc966..140c8362f113 100644 --- a/tools/include/linux/bitops.h +++ b/tools/include/linux/bitops.h @@ -3,6 +3,7 @@ #define _TOOLS_LINUX_BITOPS_H_ #include <asm/types.h> +#include <limits.h> #ifndef __WORDSIZE #define __WORDSIZE (__SIZEOF_LONG__ * 8) #endif |