maint: pacify clang -Winclude-next-absolute-path

* gl/lib/xdectoint.c: Use #include <...> instead of #include "...".
This commit is contained in:
Paul Eggert 2023-12-31 19:48:24 -08:00
parent b8f0502bb1
commit a9e4725773

View 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.