]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
maint: pacify clang -Winclude-next-absolute-path
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 1 Jan 2024 03:48:24 +0000 (19:48 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 1 Jan 2024 03:49:26 +0000 (19:49 -0800)
* gl/lib/xdectoint.c: Use #include <...> instead of #include "...".

gl/lib/xdectoint.c

index 061a08c225dd7bba0aa52bf999bcd07b43f8c3c3..5b53bdf4f29cb3a9cc460cbb500b17f39b6977e5 100644 (file)
@@ -24,9 +24,9 @@
 #include <stddef.h>
 #include <stdlib.h>
 
-#include "error.h"
-#include "quote.h"
-#include "xstrtol.h"
+#include <error.h>
+#include <quote.h>
+#include <xstrtol.h>
 
 /* Parse numeric string N_STR of base BASE, and return the value.
    Exit on parse error or if MIN or MAX are exceeded.