From: Jim Meyering Date: Thu, 22 Jun 1995 03:59:27 +0000 (+0000) Subject: (interrupt_handler): Declare to have a single integer X-Git-Tag: textutils-1_12_1~87 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3f7672063601735d4a5fb42eb9cf59c9f2c588ee;p=thirdparty%2Fcoreutils.git (interrupt_handler): Declare to have a single integer parameter. Otherwise, some compilers failed with a type mismatch error in sa_handler assignment. --- diff --git a/src/csplit.c b/src/csplit.c index a4588e3c41..5f71de323d 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -1422,7 +1422,8 @@ max_out (format) } static void -interrupt_handler () +interrupt_handler (signum) + int signum; { error (0, 0, "interrupted"); cleanup ();