From: Paul Eggert Date: Mon, 1 Jan 2024 03:48:24 +0000 (-0800) Subject: maint: pacify clang -Winclude-next-absolute-path X-Git-Tag: v9.5~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9e47257733bec699d72b5e8c03d86c32fb3056f;p=thirdparty%2Fcoreutils.git maint: pacify clang -Winclude-next-absolute-path * gl/lib/xdectoint.c: Use #include <...> instead of #include "...". --- diff --git a/gl/lib/xdectoint.c b/gl/lib/xdectoint.c index 061a08c225..5b53bdf4f2 100644 --- a/gl/lib/xdectoint.c +++ b/gl/lib/xdectoint.c @@ -24,9 +24,9 @@ #include #include -#include "error.h" -#include "quote.h" -#include "xstrtol.h" +#include +#include +#include /* Parse numeric string N_STR of base BASE, and return the value. Exit on parse error or if MIN or MAX are exceeded.