xargs: pacify GCC 13

* xargs/xargs.c: Ignore -Wanalyzer-fd-leak.
This commit is contained in:
Bernhard Voelker 2023-05-01 19:57:40 +02:00
parent fc47dadea9
commit 2be229d3af

View File

@ -70,6 +70,10 @@
#include "gcc-function-attributes.h"
#include "system.h"
/* GCC 13 misunderstands the dup2 trickery in this file. */
#if 13 <= __GNUC__
# pragma GCC diagnostic ignored "-Wanalyzer-fd-leak"
#endif
#ifndef LONG_MAX
# define LONG_MAX (~(1 << (sizeof (long) * 8 - 1)))