aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCollin Funk <collin.funk1@gmail.com>2025-09-03 19:15:49 -0700
committerCollin Funk <collin.funk1@gmail.com>2025-09-03 19:15:49 -0700
commit022673367b7e3652410bce912a12a43c2e5f4607 (patch)
treeff2509acf564dbc003ad82ade2336e8f9059d0db
parentfold: check that characters are not non-breaking spaces when -s is used (diff)
downloadcoreutils-022673367b7e3652410bce912a12a43c2e5f4607.tar.gz
coreutils-022673367b7e3652410bce912a12a43c2e5f4607.zip
maint: avoid syntax-check failure from previous commit
* src/df.c: Don't include uchar.h. * src/ls.c: Likewise. * src/wc.c: Likewise.
-rw-r--r--src/df.c1
-rw-r--r--src/ls.c1
-rw-r--r--src/wc.c1
3 files changed, 0 insertions, 3 deletions
diff --git a/src/df.c b/src/df.c
index db5287157..77576513e 100644
--- a/src/df.c
+++ b/src/df.c
@@ -23,7 +23,6 @@
#include <sys/types.h>
#include <getopt.h>
#include <c-ctype.h>
-#include <uchar.h>
#include "system.h"
#include "assure.h"
diff --git a/src/ls.c b/src/ls.c
index d4aae25ca..498ae3d73 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -55,7 +55,6 @@
#include <pwd.h>
#include <getopt.h>
#include <signal.h>
-#include <uchar.h>
#if HAVE_LANGINFO_CODESET
# include <langinfo.h>
diff --git a/src/wc.c b/src/wc.c
index f22f658b4..214637dcf 100644
--- a/src/wc.c
+++ b/src/wc.c
@@ -23,7 +23,6 @@
#include <stdio.h>
#include <getopt.h>
#include <sys/types.h>
-#include <uchar.h>
#include <argmatch.h>
#include <argv-iter.h>