~michel-slm/coreutils

a9e47257733bec699d72b5e8c03d86c32fb3056f — Paul Eggert 8 months ago b8f0502
maint: pacify clang -Winclude-next-absolute-path

* gl/lib/xdectoint.c: Use #include <...> instead of #include "...".
1 files changed, 3 insertions(+), 3 deletions(-)

M gl/lib/xdectoint.c
M gl/lib/xdectoint.c => gl/lib/xdectoint.c +3 -3
@@ 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.