mirror of
https://https.git.savannah.gnu.org/git/findutils.git
synced 2026-01-26 15:39:06 +00:00
The following syntax-check rule fails: $ make syntax-check ... maint.mk: Use #include <hdr.h>, not #include "hdr.h" for the above make: *** [maint.mk:619: sc_prefer_angle_bracket_headers] Error 1 The rule suggests using '#include <header.h>' instead of '#include "header.h"' for headers that override system headers. See gnulib documentation, section "Style of #include statements". * find/parser.c (#include "fnmatch.h": Change from "..." to <...> style. * find/pred.c (#include "fnmatch.h"): Likewise. * find/tree.c (#include "fnmatch.h"): Likewise. * lib/system.h (#include "error.h"): Likewise. * locate/locate.c (#include "fnmatch.h"): Likewise. * tests/xargs/test-sigusr.c (#include "error.h"): Likewise.