remove stray tabs from *.c files and config.h

This commit is contained in:
nhmall
2025-08-19 08:35:39 -04:00
parent 070730d845
commit 6c3e70ad77
18 changed files with 57 additions and 57 deletions
+7 -7
View File
@@ -28,16 +28,16 @@ int main(int argc UNUSED, char *argv[] UNUSED)
while (!stop) {
if ((fread(buf, 1, 1, stdin)) > 0) {
if (*cp == 8) {
*prev = 0;
} else {
if (*prev)
*prev = 0;
} else {
if (*prev)
fputc(*prev, stdout);
*prev = *cp;
}
*prev = *cp;
}
} else {
if (errno != EOF)
if (errno != EOF)
trouble = 1;
if (*prev)
if (*prev)
fputc(*prev, stdout);
stop = 1;
}