From: Arnaldo Carvalho de Melo Date: Wed, 8 Apr 2026 17:31:57 +0000 (-0300) Subject: perf util: Kill die() prototype, dead for a long time X-Git-Tag: v7.1-rc1~91^2~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5cce1b9c82fbd48e2f1f7a25a9fad8ee228176f;p=thirdparty%2Fkernel%2Flinux.git perf util: Kill die() prototype, dead for a long time In fef2a735167a827a ("perf tools: Kill die()") the die() function was removed, but not the prototype in util.h, now when building with LIBPERL=1, during a 'make -C tools/perf build-test' routine test, it is failing as perl likes die() calls and then this clashes with this remnant, remove it. Fixes: fef2a735167a827a ("perf tools: Kill die()") Reviewed-by: Ian Rogers Signed-off-by: Arnaldo Carvalho de Melo Signed-off-by: Namhyung Kim --- diff --git a/tools/perf/util/util.h b/tools/perf/util/util.h index 394dbfa944ac7..e935438451b81 100644 --- a/tools/perf/util/util.h +++ b/tools/perf/util/util.h @@ -30,7 +30,6 @@ extern bool perf_guest; /* General helper functions */ void usage(const char *err) __noreturn; -void die(const char *err, ...) __noreturn __printf(1, 2); struct dirent; struct strlist;