aboutsummaryrefslogtreecommitdiff
path: root/util-linux/script.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/script.c')
-rw-r--r--util-linux/script.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util-linux/script.c b/util-linux/script.c
index a4aaa422f..c37fd9d61 100644
--- a/util-linux/script.c
+++ b/util-linux/script.c
@@ -15,13 +15,13 @@
15 15
16static smallint fd_count = 2; 16static smallint fd_count = 2;
17 17
18static void handle_sigchld(int sig) 18static void handle_sigchld(int sig ATTRIBUTE_UNUSED)
19{ 19{
20 fd_count = 0; 20 fd_count = 0;
21} 21}
22 22
23int script_main(int argc, char *argv[]) MAIN_EXTERNALLY_VISIBLE; 23int script_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
24int script_main(int argc, char *argv[]) 24int script_main(int argc ATTRIBUTE_UNUSED, char **argv)
25{ 25{
26 int opt; 26 int opt;
27 int mode; 27 int mode;