aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2023-12-31 19:48:24 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2023-12-31 19:49:26 -0800
commita9e47257733bec699d72b5e8c03d86c32fb3056f (patch)
tree25205dff3be0604b71de360dda6ac2786dccc64c
parentbuild: update gnulib submodule to latest (diff)
downloadcoreutils-a9e47257733bec699d72b5e8c03d86c32fb3056f.tar.gz
coreutils-a9e47257733bec699d72b5e8c03d86c32fb3056f.zip
maint: pacify clang -Winclude-next-absolute-path
* gl/lib/xdectoint.c: Use #include <...> instead of #include "...".
-rw-r--r--gl/lib/xdectoint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gl/lib/xdectoint.c b/gl/lib/xdectoint.c
index 061a08c22..5b53bdf4f 100644
--- a/gl/lib/xdectoint.c
+++ b/gl/lib/xdectoint.c
@@ -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.