From f2218839a329ca4f5406a8c845b480d933a9b54c Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Sun, 29 Nov 2020 14:10:25 +0200 Subject: [PATCH] Move some function names to start of line --- src/options.c | 12 ++++++++---- src/version.c | 3 ++- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/options.c b/src/options.c index c38d06aa3..e82877b5a 100644 --- a/src/options.c +++ b/src/options.c @@ -4232,7 +4232,8 @@ char *op; * Prefix-handling functions */ -int pfxfn_cond_(optidx, req, negated, opts, op) +int +pfxfn_cond_(optidx, req, negated, opts, op) int optidx UNUSED; int req; boolean negated; @@ -4276,7 +4277,8 @@ char *op UNUSED; return optn_ok; } -int pfxfn_font(optidx, req, negated, opts, op) +int +pfxfn_font(optidx, req, negated, opts, op) int optidx; int req; boolean negated; @@ -4412,7 +4414,8 @@ char *op; } #if defined(MICRO) && !defined(AMIGA) -int pfxfn_IBM_(optidx, req, negated, opts, op) +int +pfxfn_IBM_(optidx, req, negated, opts, op) int optidx; int req; boolean negated; @@ -4640,7 +4643,8 @@ char *op; return optn_ok; } -int spcfn_misc_menu_cmd(midx, req, negated, opts, op) +int +spcfn_misc_menu_cmd(midx, req, negated, opts, op) int midx; int req; boolean negated; diff --git a/src/version.c b/src/version.c index a499c3a51..f8fd308d1 100644 --- a/src/version.c +++ b/src/version.c @@ -247,7 +247,8 @@ doextversion() return 0; } -void early_version_info(pastebuf) +void +early_version_info(pastebuf) boolean pastebuf; { char buf[BUFSZ], buf2[BUFSZ];