summaryrefslogtreecommitdiff
path: root/src/kill.c
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2015-12-13 20:16:59 +0000
committerPádraig Brady <P@draigBrady.com>2015-12-14 02:35:10 +0000
commit5f87f1ac1cb2ef44aac4284d8103e7556597a842 (patch)
tree5111883a2ffcd6856d42d66e70980fb19c02409c /src/kill.c
parent2c5d86a8b8340b50ca1457923f9041143245bb35 (diff)
downloadcoreutils-5f87f1ac1cb2ef44aac4284d8103e7556597a842.tar.xz
maint: remove form feed characters from sources
These are no longer useful and can impact viewing patches in some mail programs for example. * src/cksum.c: Remove ^L characters. * src/comm.c: Likewise. * src/kill.c Likewise. * src/ln.c Likewise. * src/nl.c Likewise. * src/pr.c Likewise. * src/ptx.c Likewise. * src/split.c Likewise. * src/tr.c Likewise. * src/tsort.c Likewise. * src/uniq.c Likewise. * src/wc.c Likewise. * cfg.mk (sc_prohibit-form-feed): A new syntax check.
Diffstat (limited to 'src/kill.c')
-rw-r--r--src/kill.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kill.c b/src/kill.c
index 98b270f75..2913d99a6 100644
--- a/src/kill.c
+++ b/src/kill.c
@@ -32,7 +32,7 @@
#define PROGRAM_NAME "kill"
#define AUTHORS proper_name ("Paul Eggert")
-
+
#if ! (HAVE_DECL_STRSIGNAL || defined strsignal)
# if ! (HAVE_DECL_SYS_SIGLIST || defined sys_siglist)
# if HAVE_DECL__SYS_SIGLIST || defined _sys_siglist
@@ -50,7 +50,7 @@
# define strsignal(signum) 0
# endif
#endif
-
+
static char const short_options[] =
"0::1::2::3::4::5::6::7::8::9::"
"A::B::C::D::E::F::G::H::I::J::K::L::M::"
@@ -104,7 +104,7 @@ PID is an integer; if negative it identifies a process group.\n\
}
exit (status);
}
-
+
/* Print a row of 'kill -t' output. NUM_WIDTH is the maximum signal
number width, and SIGNUM is the signal number to print. The
maximum name width is NAME_WIDTH, and SIGNAME is the name to print. */
@@ -185,7 +185,7 @@ list_signals (bool table, char *const *argv)
return status;
}
-
+
/* Send signal SIGNUM to all the processes or process groups specified
by ARGV. Return a suitable exit status. */
@@ -216,7 +216,7 @@ send_signals (int signum, char *const *argv)
return status;
}
-
+
int
main (int argc, char **argv)
{