Don't use "implicit int". Move the opening { of the functions to the next

line while there.
This commit is contained in:
Stefan Farfeleder 2006-07-20 09:11:08 +00:00
parent da84b3961f
commit 531c70a642
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=160521

View File

@ -398,7 +398,8 @@ cron_clean(db)
#ifdef USE_SIGCHLD
static void
sigchld_handler(x) {
sigchld_handler(int x)
{
WAIT_T waiter;
PID_T pid;
@ -428,7 +429,8 @@ sigchld_handler(x) {
static void
sighup_handler(x) {
sighup_handler(int x)
{
log_close();
}