diff options
| author | Paul Eggert <eggert@cs.ucla.edu> | 2023-12-31 19:48:24 -0800 |
|---|---|---|
| committer | Paul Eggert <eggert@cs.ucla.edu> | 2023-12-31 19:49:26 -0800 |
| commit | a9e47257733bec699d72b5e8c03d86c32fb3056f (patch) | |
| tree | 25205dff3be0604b71de360dda6ac2786dccc64c | |
| parent | build: update gnulib submodule to latest (diff) | |
| download | coreutils-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.c | 6 |
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. |
