tools/power turbostat: Fix build with musl

turbostat.c: In function 'parse_int_file':
turbostat.c:5567:19: error: 'PATH_MAX' undeclared (first use in this function)
5567 | char path[PATH_MAX];
| ^~~~~~~~

turbostat.c: In function 'probe_graphics':
turbostat.c:6787:19: error: 'PATH_MAX' undeclared (first use in this function)
6787 | char path[PATH_MAX];
| ^~~~~~~~

Signed-off-by: Calvin Owens <calvin@wbinvd.org>
Reviewed-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>

authored by Calvin Owens and committed by Len Brown 6ea0ec1b d44c40e4

+1
+1
tools/power/x86/turbostat/turbostat.c
··· 67 #include <stdbool.h> 68 #include <assert.h> 69 #include <linux/kernel.h> 70 71 #define UNUSED(x) (void)(x) 72
··· 67 #include <stdbool.h> 68 #include <assert.h> 69 #include <linux/kernel.h> 70 + #include <limits.h> 71 72 #define UNUSED(x) (void)(x) 73